Check to see if the view is executable. If you create the files in some ide's, they aren't.
Simple, but worth checking.
Hi all: @lagbox, I dont think is case sensitive because I have run the application on my localhost without issues, except some times when I tried to get the route ' localhost/convocatoria/public/registro ' and it changes the route to 'localhost/registro'.
@T2theC, yes, the views can be displayed, and yes I created the views with netbeans 8.0, and everything is fine in localhost, except the issue mentioned above.
I think laravel can't handle long paths, in my project my views are stored in:
app/
views/
registro/
includes/
*.*
plantillas/
*.*
paginas/
*.*
So, I moved all the files inside 'includes', 'plantillas' and 'paginas' to 'views/registro' and solved my problem.
registro/
includes/
*.*
plantillas/
*.*
paginas/
*.*
to
registro/
*.*
Conclusion, is not possible to create and retrieve the views from ' views/registro/paginas/. ' but from ' views/registro ' they are fully available.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community