Skip to content

Tag: php

PHP Laravel Nova returns 404

I’m working on a local laravel-nova project which worked fine the last couple of days. Now all of a sudden, when I try to go to the /nova route I get a 404 error saying Page could not be found. I tried with but with no luck. I even deleted the vendor-folder and ran composer install and php artisan nova:…

Clear cache in Lumen Framework

I want to clear cache in lumen framework. I thought the command line is the same with Laravel command. I tried to run this: but it giving error php artisan Could not open input file: artisan. Need help! Answer Lumen doesn’t have the artisan command. From the Lumen Cache documentation head over to the La…