I have a resource controller and none of the views related to them has any javascript or CSS. And the fact is that it loads the layout file which is correct for any other views not related to the resource. And here is another thing. When I comment the resource route and write a route like this :
Route::get('/create', 'ToursController@create');
The page loads CSS but when I write like this:
`Route::get('/tours/create', 'ToursController@create');`
it doesn't work.