Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 688 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 688 Bytes

Laravel Helper Demo

To Setup this laravel application it will require following step.

  • Create .env file
  • Composer install
  • Run migration
  • Install node dependency
  • Run npm

Step-1 Create .env file

Copy .env.example to .env. Set the required environment variables.

Step-2 Composer install

Install otherwise Update composer in your app.

$ composer install

Step-3 Run migration

Run migration in your app.

$ php art migrate

Step-4 Install node dependency

Install node in your app following command:

$ npm install

OR

$ yarn install

Step-5 Run npm

Run node script in your app using following command which will generate assets:

$ npm run dev