Skip to content

binbytes/laravelhelper-demo-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a06d3b6 · May 21, 2020

History

24 Commits
May 21, 2020
May 22, 2019
May 22, 2019
May 25, 2019
May 23, 2019
Nov 22, 2019
May 22, 2019
May 23, 2019
May 22, 2019
May 22, 2019
May 22, 2019
May 22, 2019
May 23, 2019
Jun 3, 2019
May 22, 2019
May 22, 2019
Nov 18, 2019
Nov 18, 2019
Oct 10, 2019
May 22, 2019
May 22, 2019
May 23, 2019

Repository files navigation

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