Skip to content
Advertisement

Tag: laravel-routing

Changing navigation and link URLs?

I am new to laravel and this will be inappropriate question. Although I searched I couldn’t find the answer. My project run smoothly with php artisan serve command. I just wanted to remove the artisan command. So I added my project into htdoc folder of XAMPP. Then I changed according to this answer https://stackoverflow.com/a/28799205/3558507 When I run my project by

Updates to Laravel route file have no effect

I am trying to create a view to display data from the database but I discovered that my route file doesn’t do anything anymore. At the moment I am trying to get the test function working but when I go to /test it just says “Page not found”. The other routes work. Even if I delete all of the contents

Getting “Class ‘appHttpControllersController’ not found” in Laravel 5.1

I’m quite new to Laravel and when I am going through a tutorial when I encountered this error. This is my code in ‘testController.php’. And this is my ‘routes.php’. I am getting this error: Class ‘appHttpControllersController’ not found How can I fix this error? Answer Let’s go through this step by step. 1. Check autoload directive on composer.json Open composer.json

Custom defined routes not resolving in Laravel

I have a Laravel 5.2 instance utilizing all the typical out-of-the-box routes for dashboard, cases, home, login/logout, and users (which is working well). I now need to create a wizard with steps (step1, step2, step3, etc.), and I need access to the session. I assigned them to the group middleware. However, when I go to the named route(s), I get

Advertisement