#Laravel 11

Apr 11, 2024

How to Use One to One Relationship in Laravel 11?

Hi, Dev In this article, we'll delve into utilizing the one-to-one Eloquent relationship in Laravel 11 applications. We'll leverage the hasOne and belongsTo methods to establish this relationship. Let's dive in and explore how to implement this effecti...

#Laravel 11

Apr 10, 2024

Laravel 11 Create Custom Error Page Example

Hi, Dev In this guide, I'll demonstrate the process of crafting personalized error pages for various error codes within a Laravel 11 application. With Laravel 11, it's possible to revamp error pages such as 404, 500, 503, 419, and 401, tailoring them t...

#Laravel 11

Apr 09, 2024

Laravel 11 Generate QR Code Example Tutorial

Hi, Dev In this tutorial, I'll guide you through the process of creating a QR code within a Laravel 11 application. Our aim is to effortlessly generate and store a QR code for a specific link. We'll leverage the functionality of the simplesof...

#Laravel 11

Apr 08, 2024

How to Resize Image Before Upload in Laravel 11?

Hi, Dev In this tutorial, I'll guide you through resizing images before uploading them in a Laravel 11 application using the Intervention/Image library We'll leverage the Intervention/Image Composer package to handle image resizing within our...

#Laravel 11

Apr 05, 2024

Laravel 11 Elasticsearch using Scout Algolia Example

Helloo Dev, In this guide, I'll demonstrate how to implement full-text search using Laravel 11's Scout package with Elasticsearch and the Algolia driver. Laravel 11 introduces the Scout Package, offering robust full-text search capabilities f...

#Laravel 11

Apr 04, 2024

How to JQuery UI Ajax Autocomplete Search in Laravel 11?

Hi, Dev In this guide, I'll walk you through creating input autocomplete functionality using jQuery UI AJAX within a Laravel 11 application. In this illustration, we'll begin by downloading a new Laravel 11 application and executing migration...

#Laravel 11

Apr 03, 2024

Laravel 11 Get Last Executed Query Example

Hi, Dev In this tutorial, I'll demonstrate the method to retrieve the last executed SQL query within a Laravel 11 application. We'll demonstrate how to print the last SQL query in Laravel 11 using toSql(), DB::enableQueryLog(), and DB::getQue...

#Laravel 11

Apr 02, 2024

Custom Laravel 11 Flash Message Examples Tutorial

Hi, Dev Today, I'll guide you through the process of implementing flash messages in a Laravel 11 application. We'll leverage Bootstrap 5 alerts to display flash messages such as success, error, warning, and info. In our Laravel 11 projects, w...

#Laravel 11

Apr 01, 2024

How to Select2 Ajax Autocomplete Search in Laravel 11?

Hi, Dev In this guide, I'll walk you through implementing Select2 AJAX autocomplete search functionality within a Laravel 11 application. Firstly, let's start by setting up a new Laravel 11 project and executing migrations to create the nec...

#Laravel 11

Mar 29, 2024

How to Send Email using Queue in Laravel 11?

Hello Dev, In this guide, I'll illustrate how to utilize a queue to send emails efficiently within a Laravel 11 application. Oftentimes, certain tasks such as email dispatching or handling payment gateways may introduce delays in loading proc...

#Laravel 11