Brief description of what this Laravel project does. For example:
Simple demo app which lists Merchants and Manage notes
git clone https://github.com/patelhir/demo-app.git
cd demo-app
## Install Dependencies
npm install && npm run dev
## Environment Setup
cp .env.example .env
## in .env file fill your local database credentials
## Run Migration & Seeder
php artisan migrate
php artisan db:seed
## Start Development Server
php artisan serve