I have PHP with Apache2 and I want to run Laravel Framework without Artisan but I can\'t! Does anyone know how to run Laravel without Artisan?
I got mine to work by adding the following block to my apache vhost conf file
ServerName myproject DocumentRoot "/path/to/myproject/public"
and running sudo chown -R daemon storage from my project root
sudo chown -R daemon storage