My laravel Application was working perfect on the local server. But After I uploaded it to my server it is not working. The directory structure of my application is shown in
Make sure you have correct web server configuration. You should point web server to a public directory and restart it.
Also, make sure you've set correct permissions on a storage directory:
chmod -R 775 storage
And try to clear all cache:
php artisan cache:clear
php artisan route:clear
php artisan config:clear
php artisan view:clear
php artisan clear-compiled