18. Laravel Sanctum. You dont need JWT. Authorization in Laravel. Laravel FormRequest sanitizer

Video version
(Leave your feedback on YouTube)

JWT is an overly complex approach. Most projects do not need it. Use JWT only if you know why your project needs it. Authorization for a banking dashboard is a good use case for JWT. Authorization for an online store is not.

Laravel Sanctum authorizes using a token with a long lifespan.

A "permanent" token is fine. But be sure to add session functionality - notifications about new or suspicious logins and the ability to log out from devices.

Test negative cases. If authorization is required, write tests to ensure that unauthorized users cannot use the method!

Store email addresses in lowercase! And conduct searches in lowercase as well. A very convenient package for pre-FormRequest.

For APIs, the User and PersonalAccessToken objects are pulled with each request. I recommend minimizing the size of these objects, especially User. It's better to create a 1-to-1 record than to stuff a user's biography text in there.

Remove the ID from the auth token.