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 Resize Image Intervention Tutorial

Laravel 11 Resize Image Intervention Tutorial

In Laravel 11, the intervention package allows users to resize the image before uploading or storing it in the database and project folder. Let’s get started installing and using Image Intervention package to resize an image before uploading: Step 1: Install Intervention Image Run the following command to install the Intervention Image package in your … Read more

Laravel 11 Socialite Login with Google Tutorial

Laravel 11 Socialite Login with Google Tutorial

Socialite is a built-in Laravel package that helps users to add social logins like google, facebook, twitter, github etc. to the application. Let’s create the application in Google Developer, and then install Socialite, and add Google Sign-in to in Laravel 11 with its help: Step 1: Create Account in Google Developer Console Step 2: Add Google … Read more

Laravel 11 FullCalendar Example Tutorial

Laravel 11 FullCalendar Example Tutorial

FullCalendar is a JavaScript library that allow users to create, read, update and delete events in calendar from database using jQuery ajax. Here, I will create an example to integrate a fullCalendar and create CRUD events in the calendar on laravel 11 applications using jQuery ajax from database: Step 1: Create Event Controller To create … Read more

Laravel 11 Dynamic Dependent Dropdown using Ajax Tutorial

laravel 11 jquery ajax dynamic categories and subcategories dependent dropdown

Dynamic categories and subcategories dependent dropdown helps users to select categories on dropdown and populate data in subcategory dropdown based on categories selection using jquery ajax. Let’s start creating categories and subcategories select dropdown using jQuery AJAX: Step 1: Define Routes Define routes in routes/web.php for handle category and subcategory options data requests via ajax: … Read more

Laravel 11 Drag and Drop File Upload with Dropzone JS

Laravel 11 Drag and Drop File Upload Tutorial

JavaScript library Dropzone.js is provide feature to drag and drop files(multiple files) from their computer into form to upload them with preview. Let’s start to create drag and drop file upload using dropzone js with preview in Laravel 11: Step 1 – Create File Upload Form Create a form where users select file for upload … Read more