Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 558 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 558 Bytes

Laravel Simple CRUD with Yajra Datatable

Installations and Usage

  1. Clone this respository

  2. Go to the folder application using cd command on your cmd or terminal

  3. Run composer install on your cmd or terminal

    composer install && npm install && npm run dev
    
  4. Copy .env.example file to .env on the root folder

    cp .env.example .env
    
  5. Create your database with name same with value of DB_DATABASE in .env file

  6. Run

    php artisan key:generate
    php artisan migrate
    php artisan serve