Hi All I have been trying to deploy the following webapp I found on github.(https://github.com/lpkapil/storemanager.git)
it is written in php using Laravel framework. I followed all the instructions on the readMe however it gives me the following error:
Im not sure what to do from here, I would like to use this to create a personal project that is of interest to me.
here is my virtual host information:
<VirtualHost *:80>
ServerName storemanager2.com
DocumentRoot "C:/xampp/htdocs/storemanager/public/"
</VirtualHost>

Do you have a .htacces file setup? because I see you are running in a production environment.
If you are running in a production environment you'll need a .htaccess.
Try this;
In command line cd to your project directory and follow all installation instructions in repo.
in command line type PHP artisan serve.
if you are in a production environment as above create a .htaccess file and copy the code below to it.
Should work fine now.