Installation
This dashboard template is based on laravel default template. it was created with:
composer create-project laravel/laravel example-appBefore proceeding you’ll need to have the latest stable PHP, NodeJS and npm installed on your machine.
To get started follow these steps
Open your favorite console application (Terminal, iTerm, Command Prompt, etc.).
Navigate to the
datta-able-laravel/folder and Install packages:Run command:
npm i,npm installoryarn install.
To install php packages run command:
composer installTo Create database tables run:
php artisan migrateTo Create database users run:
php artisan migrate --seedTo run the project locally:
Run this command in separate terminal:
php artisan serveRun this command in separate terminal:
gulpOpen http://localhost:8000 to view it in the browser.
To builds the app for production
gulp prod-build. It will create thepublic/assets/folder inside this project directory. It correctly bundles JS and SCSS files in production mode and optimizes the build for the best performance. The build is minified. For Laravel deployment please visit its documentation. to compile Laravel JS and scss file run:npm run prod.
You can find detailed instructions on using Laravel and many tips in its documentation.
Last updated
Was this helpful?