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 update5.Run
php artisan key:generate6.Run
php artisan jwt:secret7.Run
php artisan migrate8.Run
php artisan db:seed9.Run
php artisan serve10.Set Mail Details
php artisan serve11.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:run13.Or you can simply run the command for sending Reminder Email
php artisan reminder:send14.Import the postman collection attached 5You can see the postman doc. :https://documenter.getpostman.com/view/6464397/2sA3BuUo5T