0
I have a Blade file in which it is my base layout (which will be loaded on all pages). But according to what I set the route, the css of this page does not load. Ex.:
if my route is like this:
Route::get('/novo', 'UserController@novo');
css loads, but if I put it like this:
Route::get('/users/novo', 'UserController@novo');
My css does not load!