How to Add Date range filter with Livewire pagination in Laravel

Using pagination you can divide a large list of records into multiple pages and show a limited number of records per page.

But if the search filter is not available with pagination then traversing the paginated result becomes difficult.

In this tutorial, I show how you can add a date range filter with Livewire pagination in Laravel 9.

In the example, I am using jQuery UI library for datepicker.

How to Add Date range filter with Livewire pagination in Laravel

Read more

Add CKEditor 5 and save it to MySQL database in Laravel

CKEditor is a widely use WYSIWYG (What You See Is What You Get) editor. It provides all the basic features that are required for formatting.

The editor works perfectly but you need to write extra code for file upload through the editor.

In this tutorial, I show how you can add CKeditor 5 to an HTML element and save it to the MySQL database in Laravel 9.

Add CKEditor 5 and save it to MySQL database in Laravel

Read more

How to Create custom Validation Rule in Laravel 9

Validation is very important when you are allowing the user to submit <form > or data manipulation using AJAX.

Laravel already provided validation rules that you can use to validate the data. You can create your own validation rules if you are not available to apply specific validation using inbuilt rules.

In this tutorial, I show how you can create and use custom validation rule in Laravel 9.

How to Create custom validation rule in Laravel

Read more

Create Livewire pagination with Search filter and Sorting in Laravel

Pagination is very useful when you have to show a huge list of records on the page. It divides the records into multiple pages.

Limited number of records shown at a time.

Livewire has provided the WithPagination trait for generating pagination. Its implementation is similar to Laravel default pagination.

In this tutorial, I show how you can create Livewire pagination with search filter and sorting in Laravel 9.

Create Livewire pagination with search filter and sorting in Laravel

Read more