- Token-based authentication with Laravel Passport
- Middleware
- Validation
- CRUD with API
install required dependencies
composer installcopy .env.example file to .env :
cp .env.example .env
Generate APP_KEY
php artisan key:generaterun migrations:
php artisan migrateto generate secure access tokens with Passport:
php artisan passport:installStart development server
php artisan serve
You can also check Postman Documentation