#Laravel 11

Apr 16, 2024

How to Use Yajra Datatables in Laravel 11?

Hi, Dev In this guide, I'll demonstrate the utilization of Yajra Datatables within a Laravel 11 project. Our tool of choice will be the `yajra/laravel-datatables` composer package, empowering us to seamlessly integrate datatables into our Laravel 11 ap...

#Laravel 11

Apr 15, 2024

Creating Dynamic Charts with ChartJS in Laravel 11

Hi, Dev In this tutorial, I'll guide you through the process of crafting a line chart using Chart.js within a Laravel 11 application. Chart.js offers a versatile range of chart types including Line Charts, Bar Charts, Pie Charts, Area Charts, and more,...

#Laravel 11

Apr 13, 2024

REST API with Passport Authentication in Laravel 11

Hi, Dev In this guide, I'll walk you through the process of setting up a REST API with Passport Authentication in a Laravel 11 application. We'll start from the basics, covering what APIs, REST APIs, and Laravel Passport are, and then dive into creatin...

#Laravel 11

Apr 12, 2024

How to Use Many to Many Eloquent Relationship in Laravel 11?

Hi, Dev In this guide, I'll demonstrate how to implement a many-to-many relationship in a Laravel 11 application. We'll utilize the `belongsToMany()` Eloquent method to establish this relationship. In Laravel, a many-to-many relationship betw...

#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