Install Composer
dependencies.
composer install
Install NPM
dependencies.
npm install
The below command will compile all the assets(sass, js, media) to public folder:
npm run dev
Copy .env.example
file and create duplicate. Use cp
command for Linux or Max user.
cp .env.example .env
If you are using `Windows`, use `copy` instead of `cp`.
copy .env.example .env
Create a table in MySQL database and fill the database details DB_DATABASE
in .env
file.
The below command will create tables into database using Laravel migration and seeder.
php artisan migrate:fresh --seed
Generate your application encryption key:
php artisan key:generate
Start the localhost server:
php artisan serve
to login email => '[email protected]', password => demo