#Laravel 11

Jul 23, 2024

How to Integrate Authorize.net Payment Gateway Example in Laravel 11?

Hi, Dev In this tutorial, I'll guide you through integrating the Authorize.net payment gateway into a Laravel 11 application from scratch. Authorize.net is a robust online payment gateway service that enables businesses to accept credit card...

#Laravel 11

Jul 19, 2024

Laravel 11 Install and Use Trix Editor Example

Hi, Dev In this article, I will guide you through the process of installing and using the Trix Editor in a Laravel 11 application. Additionally, we will cover how to enable image uploads within the Trix Editor in Laravel 11. Trix Editor is a...

#Laravel 11

Jul 18, 2024

How to Product Add to Cart Functionality in Laravel 11?

Hi, Dev In this tutorial, I will demonstrate how to implement the "Add to Cart" functionality in a Laravel 11 application. Creating this feature is essential for any eCommerce project. In this example, we will utilize sessions and AJAX to bui...

#Laravel 11

Jul 15, 2024

How to Create MongoDB CRUD Application in Laravel 11?

Hi, Dev In this tutorial, I will guide you through a step-by-step example of performing CRUD operations using MongoDB with Laravel 11. We will also cover how to set up a MongoDB database in a Laravel 11 application. What is MongoDB?

#Laravel 11

Jul 12, 2024

How to CORS Middleware Configuration in Laravel 11?

Hi, Dev In this post, I will guide you on how to customize CORS middleware in a Laravel 11 application. By default, Laravel 11 comes with CORS middleware enabled with a standard configuration. What is CORS Middleware in Laravel?...

#Laravel 11

Jul 11, 2024

How to RouteServiceProvider Configuration in Larevl 11?

Hi, Dev In Laravel 11, the RouteServiceProvider.php file has been removed. Instead, you can now configure routes directly in the app.php file. You might wonder how to create a custom route file without the RouteServiceProvider. In versions pr...

#Laravel 11

Jul 10, 2024

Laravel 11 Integrate Admin Template Example

Hi, Dev In this guide, I will walk you through the step-by-step process of integrating an admin theme into a Laravel 11 application. In this example, we will integrate the SB Admin Bootstrap theme into a Laravel 11 application. First, we will...

#Laravel 11

Jul 05, 2024

How to Apexcharts using Larapex Charts in Laravel 11?

Hi, Dev In this guide, I'll demonstrate how to generate dynamic ApexCharts using the Larapex Charts package in a Laravel 11 application. ApexCharts is a JavaScript library designed to create visually stunning and interactive charts for websit...

#Laravel 11

Jul 04, 2024

How to Socialite Login with Slack Account in Laravel 11?

Hi, Dev In this article, I will demonstrate how to implement Slack login in Laravel 11 using the Socialite composer package. You can integrate this feature with Laravel UI, Laravel Jetstream, or Laravel Breeze to enable Slack account login. A...

#Laravel 11

Jul 03, 2024

How to Real-Time Notifications using Pusher Laravel 11?

Hi, Dev In this article, I will guide you through the process of sending real-time notifications using Pusher in a Laravel 11 application. We'll utilize the Pusher driver to deliver instant notifications via the Echo server in our Laravel 11 project.

#Laravel 11