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,
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.
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
Post a Comment