laravel-jwt-auth

1.Clone The git repository
2.Rename The .env file. Run this

cp .env.example .env

3.create a database and set the database details in the .env file.
4.Run
composer update
5.Run
php artisan key:generate
6.Run
php artisan jwt:secret
7.Run
php artisan migrate
8.Run
php artisan db:seed
9.Run
php artisan serve
10.Set Mail Details
php artisan serve
11.For Email Please Set Your Mail config in the .env
MAIL_MAILER=smtp
MAIL_HOST=sandbox.smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=148f6c14bdeccc
MAIL_PASSWORD=4cb302993caf91
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
12.For running the schedule for the command ($schedule->command('reminder:send')->dailyAt('00:00');)
php artisan schedule:run
13.Or you can simply run the command for sending Reminder Email
php artisan reminder:send
14.Import the postman collection attached 5You can see the postman doc. :https://documenter.getpostman.com/view/6464397/2sA3BuUo5T