php - why my views didn't show in laravel 5 -


i install laravel-5 on ubuntu 15.04 did not shows views or standard views

should anythings more?

its route.php file:

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

the common reason behind issue have not changed permission of storage folder. please run following laravel root :

chmod -r 755 storage 

if doesn't works try

chmod -r 777 storage 

Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -