Powered by Laravel 5.4
- Bootstrap 3.3.7
- jQuery 3.1.1
- Install dependencies via composer
composer install
- If some error happen like
bootstrap/cachenot found just simply create that folder then composer install again
mkdir bootstrap/cache
- Copy
.env.exampleto.env - Generate key
php artisan key:generate
- Because we are using
Vue.jsfor front-end so we need to install dependencies
npm install
- Then build it
npm run production // For Production
npm run watch // For Development with watching source files
- Running up server!
php artisan serve
- Linking
storagefolder topublicfolder
php artisan storage:link
Please visit resources/assets/js/README/md for more detail.