# Laravel 5.3
WARNING
We don't ship Laravel 5.3 files anymore with codecanyon downloadable zip file, so if you need 5.3 version files, you need to get from our git repo.
# Get Composer packages
composer install
# permissions
chmod -R 755 storage
chmod 755 bootstrap/cache
If you are on Linux/ mac you can run below command to chown it.
chown -R www-data /var/www
# database credentials
open .env
and modify database details with yours
# add tables to databaes
php artisan migrate
# add admin to users table
php artisan db:seed --class=AdminSeeder
# compile assets
If you don't have good knowledge on nodejs and npm, you can copy public folder files from codecanyon's downloaded files.
Make sure you have nodejs (opens new window) installed in your system
install gulp, bower globally
npm install -g gulp bower
install local packages
npm install
install sass globally
npm install -g node-sass
get bower components
gulp bower
move assets to public
gulp
# Congratulations
open your website and now it should be fully working 😃