
$ cat 2026-01-08
Laravel Validation
Laravel Validation provides an easy way to validate incoming data, and we know that all the application’s incoming data must be validated before they are stored into the database or processed further,...

Laravel Validation provides an easy way to validate incoming data, and we know that all the application’s incoming data must be validated before they are stored into the database or processed further,...
In this post we will see how you can implement token based authentication in lumen or laravel. We will use JWT token in our implementation. As, In any API, session is not maintained as it works on sta...