skip to Main Content

I am working in laravel 5 an existing project downloaded from cpanel. I want to make some changes but my changes do not have any affect. I, at the end remove the route but route still working. There is no any extra route file binding in routeServiceProvider not required or included in web.php. I am wondering how it could be happened?
I have tried:

php aritsan cache:clear
php artisan config:clear

can somebody please tell me what could be the issue ?

2

Answers


  1. Please, run the following command:

    php artisan route:clear
    
    Login or Signup to reply.
  2. please run the following:

    php artisan route:cache
    

    After running this command, your cached routes file will be loaded on every request.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search