Hello.
The problem is that you are using
get("about", function() { return view("about"); });
It responses to [http://manudahmen.be/blocnotes2/about] but not to [http://manudahmen.be/blocnotes2/public/about]
To solve this, just use:
get("about", function() { return view("public/about"); });
Hope it helps!
You can access a course about Laravel 5.0 => 5.1, to get deeper knowledge in Laravel projects, here: https://www.udemy.com/laravel-5-course-learn-php-laravel/?couponCode=forum
Best wishes.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community