Creating Custom Laravel Blade Directive

In Laravel development, efficiency is key. One powerful tool that often goes underutilized is the creation of custom Blade directives. These directives allow developers to streamline their code, enhance readability, and promote reusability. In this blog post, we’ll delve into the world of custom Blade directives in Laravel, exploring their benefits and providing practical examples

Learn More

Laravel CRUD Application

In this tutorial, we are going to create a Laravel application with CRUD operation. In programming, create, read, update, and delete are the four basic operations of data storage. We will give you a simple example of how to perform a CRUD operation in Laravel 8. Laravel is one of the most popular PHP-based frameworks

Learn More

Laravel API Tutorial: Building & Testing a RESTful API

Laravel is a PHP framework developed with PHP developer productivity in mind. The framework also aims to evolve with the web and has already incorporated several new features and ideas in the web development world, such as job queues, API authentication out of the box, real-time communication, and much more. What are REST APIs? A

Learn More

Razorpay Payment Gateway Example In Laravel

In this blog, you will integrate the Razorpay payment gateway with Laravel. Create Razorpay Account Before starting this integration, we need to create a Razorpay account and get your Key Id from Razorpay. You can create a new account using this link: Razorpay Razorpay provides test and live dashboard mode. Now, you will need API

Learn More

Laravel Authentication Using Breeze

In this blog, you will learn to complete Laravel authentication with Breeze. Laravel Breeze provides the required methods for login, register, logout, forget password, profile, reset password page, email verification, and much more. Create Laravel Application First of all, Let’s create a new Laravel application. To create a new application, open the terminal or command

Learn More

Custom Facades in Laravel with Example

While creating a Laravel application, you will see facades many times like route facades, cache facades, Auth, and many more. What are facades? Facades provide a static interface to classes that are available in the application’s service container. Laravel ships with many facades which provide access to almost all of Laravel’s features. In simple terms,

Learn More