I have a route:
Route::get('index function(){
return view('almacen.articulo');
});
It is an Index file found in:
resources/views/almacen/articulo/index.blade.php
and I call the view in my general index in this way:
<a href="{{url('/almacen/articulo'}}"
When opening this view in the browser, click on the corresponding option in my menu that is in the general index view of my project. I get the error:
PAGE NO FOUND
I am using Laravel 5.4
.
Could someone help me with this error?