In this post, you will learn some Laravel Redirect Cheat Sheet that is useful in your Laravel development. It will redirect to another page with status 302 indi...
Today I wanted to bring you the topic of validation in the backend using Laravel. For me, this is part of what makes this framework so elegant and fluent.
In this post, I will share how to check if the string contains a specific word in Laravel. Sometimes we need to check the submitted string if exists a particula...
Today we will learn about using a new function, which is tap() with Query Scopes, and the most important features that it gives us and benefit from it in allow...
Laravel Sanctum, also commonly known as Sanctum is a lightweight authentication system used to authenticate token-based APIs and SPAs (ReactJs, VueJs, etc). In...
In this post, I will show you an example of how to implement using Laravel 9 on Update an Existing Model. Laravel model update is one of the most functionality...
In my previous post, I share how to implement custom expiration for your Laravel Remember Me authentication/login. But when I test my code it seems not to work...
In this post, I will share how to create a custom service provider in Laravel 9. If you have a feature that needs to change the Laravel locale or maybe change t...
In this post, I will show you an example of the Laravel model create with different methods that can use in your application. When learning the Laravel model cr...
In this post, I will show you how to implement Laravel translation with variables. Building a Laravel Application with multi-language is amazing and it is easy...
In this post, I will show you an example how to implement Laravel 8 using FPDF. Let's use FPDF as our package to generate PDF with Laravel. In my previous post...
In this example, I will show you how to implement the Laravel 8 Collection with first() and firstWhere() methods. When doing a Laravel project we should use Lar...
In this tutorial, you will learn to implement the Laravel 8 one to one relationship. One-to-one model relation in Laravel is the basic relationship that we usua...
In this article, we will see laravel 8 autocomplete search from the database. Using ajax autocomplete textbox in laravel 8 we will get records from the database...