Code your dreams into reality.
Every line of code is a step towards a better future.
Embrace the bugs, they make you a better debugger.

Laravel 11 Ajax Post Request Example

Laravel 11 Ajax Post Request Example

In Laravel 11, Ajax post requests allow users to submit a form to a controller or server and store it in your database without refreshing the page. Let’s start creating a simple form and post the form using AJAX without page refresh: Step 1 – Create a Form Create a form in your Blade view … Read more

Multiple Image Upload in Laravel 11 using Ajax

Multiple Image Upload in Laravel 11 using Ajax

In Laravel 11, Ajax Multiple Image Upload allows users to upload multiple images at once without requiring page reloading with great user experience. Steps to create ajax multiple image upload with preview: Step 1 – Create Ajax Multiple Image Upload Form View Create a form view and use jQuery AJAX to select multiple images and … Read more

Laravel 11 Multiple Image Upload With Preview Tutorial

Laravel 11 Multiple Image Upload With Preview Tutorial

Laravel 11 Multiple Image Upload with Preview allows users to show a preview of multiple images before uploading them to the server. And this helps them to confirm their selection before submitting the images. Let’s start creating a display upload form, controller, route and use jquery to handle the preview of images before upload: Step … Read more

Laravel 11 Multi Authentication Tutorial

Laravel 11 Multi Authentication Tutorial

Multi authentication (or multi-auth) in Laravel 11 project allows different types of users to log in and access their respective routes in application. Let’s make multi auth using Bootstrap Auth UI: Step 1 – Set Up Laravel 11 Project To create a new Laravel project using Composer command: Step 2 – Set up Database Add … Read more

Laravel 11 Ajax Image Upload Tutorial

Laravel 11 Ajax Image Upload Tutorial

In Laravel 11, AJAX allows image uploading without page refresh and jQuery allow displaying a preview of the image before send it to server. Let’s start by creating AJAX image upload functionality, which allows users to select an image in the form, click the upload button, and see a preview of the uploaded image without … Read more

Laravel 11 Multiple Image Upload Tutorial

Laravel 11 Multiple Image Upload Tutorial

Multiple Image Upload in Laravel 11 refers to the process of allowing users to upload more than one image file at a time through a web form. Let’s get started by following the steps below: Step 1 – Create Multiple Image Upload Form View Create a view file called upload.blade.php in the resources/views folder and … Read more

Laravel 11 Integrate and Use CKEditor 5 Tutorial

Laravel 11 Integrate and Use CKEditor 5 Tutorial

CKEditor 5 allows users to create a text editor on Laravel 11 form by adding their library into it and also allows text or content formatting. Let’s start creating a text editor on Blade View form to format text content such as font size, color, family and more by integrating ckeditor 5: Step 1: Create … Read more

Laravel 11 Save JSON Data in Database Tutorial

Laravel 11 Save JSON Data in Database Tutorial

In Laravel 11, define the cast attribute on the Model class, which allows users to store and retrieve structured data in JSON format from database. Let’s start to implement save, retrieve and update json data in database using casts attribute: Step 1: Create Model and Migration Run the following Artisan commands to create a model … Read more

Laravel 11 Google Autocomplete Address Tutorial

Laravel 11 Google Autocomplete Address Tutorial

The Google Places API allows users to create an autocomplete search address feature in Laravel 11 forms while users type their address in it, providing suggestions for complete addresses. Let’s get started creating a Google autocomplete address using the Google Places API: Step 1: Set Up Google API Key First, you need to obtain a … Read more