Thanks for purchasing Josh admin theme
We are sure you will Enjoy using it!
Git repo installation is a bit different than the original one because here all files copied already and everything is configured properly
infact this will take less time compared to installing from CodeCanyon's files
we don't push vendors to git as they can grow like anything (a default feature of laravel or any composer related projects)
composer install
Since .env file is gitignored, we need to create that (again a security measure of not to expose your database details to anyone else)
cp .env.example .env
Every app needs a key which is being used for many purposes including salting your passwords
php artisan key:generate
open .env
and modify database details with yours
php artisan migrate
php artisan db:seed
open your website and now it should be fully working :)
To report bugs, please click on "Issues" in left menu and check if the bug is reported already and if it doesn't exists please create new issue by clicking create issue
If you would like to improve code :) or fix any bug or add new feature,
please send a pull request and we will be thankful to you for your work! :D