How to use Multiple Database in Laravel 11?
In this post, I will show you how to setup multiple database connection in laravel 11 application. In Laravel 11, you can define and use multiple database connections in your application. This featur.....
Laravel 11 Stripe Payment Gateway Integration Example
In this post, I will show you how to integrate stripe payment gateway in laravel 11 application from scratch. Stripe is a very popular and secure internet payment gateway company that helps to accept.....
Laravel 11 Socialite Login with Twitter / X Account Example
In this article, we will learn laravel 11 login with twitter account using socialite composer package. we can use with laravel ui, laravel jetstream and laravel breaze for login with twitter / X accou.....
Laravel 11 Drag and Drop File Upload with Dropzone JS
In this post, I would like to share with you how to drag and drop file upload using dropzone js in laravel 11 application. Dropzone.js is a library for handling file uploads in web applications. It m.....
How to Generate Barcode in Laravel 11?
In this post, I will show you how to generate barcode in laravel 11 application. we will use picqer/php-barcode-generator composer package to create barcode in laravel 11. In this example, we will ge.....
Laravel 11 Socialite Login with Google Account Example
In this tutorial, we will learn laravel 11 login with google account using socialite composer package. we can use with laravel ui, laravel jetstream and laravel breaze for login with gmail account. A.....
Laravel 11 ChartJS Chart Example Tutorial
In this post, I will show you how to create line chart using chartjs in laravel 11 application. we can also create Line Charts, Bar Charts, Pie Charts, Area Charts, etc using chartjs js. Chart.js is .....
Laravel 11 REST API with Passport Authentication Tutorial
In this post, I will show you how to create REST API with Passport Authentication in laravel 11 application. We will learn from scratch about APIs, REST APIs, and Laravel Passport, and create an examp.....
Laravel 11 Many to Many Eloquent Relationship Tutorial
In this post, I will show you many to many relationship in laravel 11 application. we will use belongsToMany() eloquent method for many to many relationship. In Laravel, a many-to-many relationship b.....
Laravel 11 One to One Relationship Example
This article will help you how to use one to one eloquent relationship in laravel 11 application. we will use hasOne and belongsto method for one to one relationship. One to One model relationship is.....
How to Create Custom Error Page in Laravel 11?
In this article, I will show you how to create a custom error page in a Laravel 11 application. We can redesign 404, 500, 503, 419, 401 error pages in Laravel 11. By default, Laravel provides a very .....
How to Generate QR Code in Laravel 11?
In this post, I will show you how to generate a QR code in a Laravel 11 application. We will generate and save the QR code for a link. We will use the simplesoftwareio/simple-qrcode composer package .....