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 Stripe Payment Gateway Integration Tutorial

Laravel 11 Stripe Payment Gateway Integration Tutorial

PHP Stripe SDK allows users to integrate payment gateway into Laravel 11 applications which helps in collecting international and domestic payments in the application. Let’s start to add stripe payment gateway in application: Step 1: Set Up Your Stripe Account Open browser and type https://dashboard.stripe.com/register url to set up account on stripe, and then copy … Read more

Laravel 11 Firebase Push Notification Example Tutorial

Laravel 11 Firebase Push Notification Example Tutorial

Google Firebase Cloud Messaging (FCM) helps you to send real time push notifications to your laravel 11 applications web and app(mobile) users. Let’s start to set up google fcm (Firebase Cloud Messaging) push notification to send ios, android and web apps users in laravel: Step 1: Set Up Firebase Go to the Firebase Console, and … Read more

Laravel 11 Instamojo Payment Gateway Integration Tutorial

Laravel 11 Instamojo Payment Gateway Integration Tutorial

Instamojo payment gateway provides php package which allow users to integrate it into Laravel 11 application. Let’s start by creating an account in Instamojo and install its package to setup payment collection in Laravel application using this package: Step 1: Create Account in InstaMojo Step 2: Install Instamojo PHP SDK Install the Instamojo PHP SDK … Read more

Laravel 11 Integrate Razorpay Payment Gateway Tutorial

Laravel 11 Integrate Razorpay Payment Gateway Tutorial

Razorpay provide a php library that allow users to integrate payment gateway in laravel 11 applications. Let’s start installing razorpay php library in the application and create a form which is used to collect online payments through credit card, debit card, netbanking and upi: Step 1: Create Account in Razorpay Simply open https://razorpay.com url on … Read more

Laravel 11 Summernote Image Upload Example

Laravel 11 Summernote Image Upload Example

Summernote WYSIWYG Editor is a JavaScript library that allows users to create WYSIWYG editors with many features on forms in Laravel 11. Let’s start to create text editor on forms using summernote cdn: Step 1: Create a Form Create a form in your view file in resources/views/ directory: Step 2: Include Summernote JS and CSS … Read more

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