404 Not Found, but route exist in Laravel

Please Make you have Apache configured with the following information in /path/to/apache2/installation/conf/httpd.conf Add the following information <Directory “path/to/laravel/project/public”> Allowoverride All </Directory> .htaccess file located in public folder make sure that it has the following <IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </IfModule> Options +FollowSymlinks RewriteEngine On # Redirect Trailing Slashes… RewriteRule ^(.*)/$ /$1 [L,R=301] # Handle…