In laravel, there’re plenty of validation rules that exist out of the box, but sometimes we need to create our own custom validation rules to…
View More Custom Validation In LaravelAuthor: CodersHandbook
Managing Timezone in Laravel and Lumen
When we are working on a large web application then there’s more possibility that it’s visiting users will be from different countries, and so we…
View More Managing Timezone in Laravel and LumenMigration and Data Seeding in Laravel
In this tutorial, we will learn how to create database migrations and seeders. For PHP developers, we need to have a database for a dynamic…
View More Migration and Data Seeding in LaravelImplementing Token Based Authentication in Lumen
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.…
View More Implementing Token Based Authentication in LumenUsing JQuery AJAX to communicate with server
Most classic way to pass data to the server from the webpage is to submit a form, and the browser will submit data to the…
View More Using JQuery AJAX to communicate with serverImplementing Password Based Authentication Manually In Laravel
We have seen above how we can use laravel’s default scaffoldings, It is fast and easy to implement and we can also modify many things…
View More Implementing Password Based Authentication Manually In Laravelimplementing custom auth guard in laravel
We have seen above how we can use laravel’s default scaffoldings, It is fast and easy to implement and we can also modify many things…
View More implementing custom auth guard in laravelHow to create custom helper functions in Laravel
Laravel already provides many built-in functions like asset , csrf_token , view , with and many more, so we can use this function in the…
View More How to create custom helper functions in LaravelImplementing Password based authentication in Laravel
Any application needs a login system if it has user specific resources, here we will see how you can add a login system in laravel…
View More Implementing Password based authentication in Laravel