Laravel insert multiple records in Database

In this tutorial, you will learn Laravel insert multiple records in Database Using Seeder. We will use the database seeder class to insert multiple rows into the database. Laravel has more than one way to insert the dummy or test data such as Seeder, Faker and factory classes. You can generate dummy data using model Factories and fakers to create fake data, for developing and testing your app.

Read more

Laravel Scope Example: How to use Query Scope in Laravel 11

In the Laravel Model Scope Example tutorial, you will learn how to create and use dynamic eloquent model query scopes in the Laravel 11 application. Laravel scope in the Model is easy to use eloquent query and get the data with mapping.

A scope is a method in your model that makes it able to add database logic into your model. Laravel provided us with two types of scopes for maintaining our queries with fast and the code easily reusable;

Read more

Laravel 11 Datatables Pagination with AJAX Search and Sort

In this Laravel 11 Datatables Pagination Example, you will learn how to use server-side data table Ajax pagination with search and sort in Laravel 11.

Datatable is the most commonly used application for pagination with search and sort functionality. So. here we have implemented easy and best way the Ajax data-tables pagination in Laravel 11.

Read more

Laravel 11 Signature Pad Example Tutorial

More than time we need to sign the user in the signature pad. If you need to add the signature pad in Laravel 11 application then you land a perfect place. Here in this article, we are going to share how to create a Digital Signature pad with form in laravel application.

Basically, the Signature Pad is a JavaScript library for drawing smooth signatures. It’s HTML5 canvas based and uses variable width Bézier curve interpolation based on Smoother Signatures post by Square. It works in all modern desktop and mobile browsers and doesn’t depend on any external libraries.

Read more