Laravel API With JWT Authentication
Laravel API With JWT Authentication Create a new Laravel project composer create-project laravel/laravel [my-project-name] Install JWT auth composer require tymon/jwt-auth Go to the app->Models->User.php and update that user model <?php namespace App ; use Tymon \ JWTAuth \ Contracts \ JWTSubject ; use Illuminate \ Notifications \ Notifiable ; use Illuminate \ Foundation \ Auth \ User as Authenticatable ; class User extends Authenticatable implements JWTSubject { use Notifiable ; // Res...