php - laravel 5 boilerplate app not working -


i new laravel framework, first ever application framework tried create minimal application want know how can view default auth, login, register pages found under routes.php?

route::get('/', 'welcomecontroller@index');  route::get('home', 'homecontroller@index');  route::controllers([     'auth' => 'auth\authcontroller',     'password' => 'auth\passwordcontroller', ]); 

i can see welcome page below,

enter image description here

project hosted directory e:\xampp\htdocs\directory\app\ 

when went go path, http://localhost/directory/public/auth/login see login page without styles, plain ui this.

enter image description here

and there when click on login button url redirecting somewhere else.

its going here -> http://localhost/auth/login

and displaying object not found! error.

what did miss in configuration?

update: seems app.blade.php not loading , why pages in plain text mode without html styles.

you should set document root point directory/public folder.

in way able access laravel directly http://localhost


Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -