TAGS : Laravel 12

Laravel 12 Select2 Ajax Autocomplete Search

Hello! In this article, I’ll show you how I implemented a Select2 autocomplete search in Laravel 12 using Ajax. This is super useful when you want a search box that loads results from the dat...

Laravel

How to Get Client IP Address in Laravel 12

When I started working with Laravel 12, one of the basic things I needed was to get the client’s IP address—either for logging, security, or just trackin...

Laravel

How to Remove Duplicates from Collection in Laravel 12

In this tutorial, I’ll show you how to remove duplicate values from a Laravel 12 collection using the unique() method. Whether you’re workin...

Laravel

How to Merge Two Collection in Laravel 12

In this tutorial, I’ll show you how to merge two Eloquent collections in Laravel 12 using the merge() method. This is useful when you want to comb...

Laravel

How to sortBy Collection in Laravel 12

ns in Laravel 12 using the sortBy() method. It helps you arrange items in ascending order based on a key or a callback function. I’ll walk you through different use cases, including simple va...

Laravel

How to sortByDesc Collection in Laravel 12

In this tutorial, I’ll show you how to sort collections in Laravel 12 using sortByDesc() and other helpful methods. Whether you're sorting by simple values, counts, dates, multiple column...

Laravel

Laravel 12 Cron Job Task Scheduling

In this guide, I’ll show you how to schedule and run cron jobs in Laravel 12. You can automate tasks like emails, reports, or cleanup using Laravel’s built-in task scheduler. No more re...

Laravel

Laravel 12 Guzzle HTTP Request Example

In this guide, I’ll show you how to make HTTP requests using Guzzle in Laravel 12. Whether you're calling an external API, sending data, or getting a response, Guzzle makes it simple. I&r...

Laravel

How to Change Date Format in Laravel 12

In this post, I’ll show you how to change date formats in Laravel 12. Whether you're displaying a date in Blade, formatting it in a controller, or working with Carbon, I'll walk you t...

Laravel

Send Email using Queue in Laravel 12

In this tutorial, I’ll show you how to send emails using queues in Laravel 12. Queuing emails helps your app respond faster by handling email sending in the background. It’s easy to set...

Laravel

RECOMMENDED POSTS

FEATURE POSTS