Category: Laravel 10

  • Laravel 10 Paytm Payment Gateway Integration Example

    Laravel 10 Paytm Payment Gateway Integration Example

    Paytm is one of the most popular payment gateway providers in India. It offers a seamless payment experience to customers and provides a variety of payment options. Laravel is a popular PHP framework that allows developers to build scalable and robust web applications. In this article, we will learn how to integrate Paytm payment gateway…

  • Laravel 10 Form Validation Example From Scratch

    Laravel 10 Form Validation Example From Scratch

    Laravel is a popular PHP framework that offers a powerful and easy-to-use form validation system. In this article, we will guide you through the process of creating a Laravel form validation example from scratch. Creating a Laravel Form To start, let’s create a simple form in Laravel. We will use Laravel’s built-in form helper to…

  • Laravel 10 Livewire Datatables Tutorial

    Laravel 10 Livewire Datatables Tutorial

    Datatables are a popular way to display large amounts of data in a tabular format that is easy to navigate and understand. In this tutorial, we will show you how to create dynamic datatables using Laravel 10 and Livewire. Prerequisites: Before you start, make sure you have the following installed on your system: Step 1:…

  • Laravel 10 cURL HTTP Request Example

    Laravel 10 cURL HTTP Request Example

    Laravel 10 is the latest version of the popular PHP framework, which is widely used for building robust web applications. One of the most common tasks in web development is to make HTTP requests to external APIs, and Laravel provides a convenient way to do this using the cURL library. In this article, we will…

  • Laravel 10 Send Emails using Office365 Example

    Laravel 10 Send Emails using Office365 Example

    Sending emails is an essential feature of web applications, whether it is for password reset, email confirmation, or sending newsletters. Laravel 10 provides various drivers for sending emails, including SMTP, Sendmail, and Amazon SES. In this tutorial, we will be using the SMTP driver and Office365 as the email service provider. Before we begin, make…

  • Laravel 10 Livewire Load More On Page Scroll Example

    Laravel 10 Livewire Load More On Page Scroll Example

    Laravel Livewire is a powerful tool that allows you to build interactive user interfaces in Laravel using a simple and intuitive syntax. In this article, we’ll explore how to implement a “load more on page scroll” functionality using Laravel Livewire. Prerequisites Before we start, make sure you have the following: Step 1: Setting up the…

  • Laravel 10 Livewire Add or Remove Dynamically Input Fields

    Laravel 10 Livewire Add or Remove Dynamically Input Fields

    Laravel 10 Livewire is a powerful tool that simplifies building dynamic web applications. In this tutorial, we will show you how to add or remove dynamically input fields using Livewire. This feature can be useful for forms where users can add or remove multiple items such as tags, categories, or images. Prerequisites Before we start,…

  • Laravel 10 Livewire Fullcalendar Integration Example

    Laravel 10 Livewire Fullcalendar Integration Example

    FullCalendar is a popular JavaScript library that allows you to create a customizable calendar for your web application. Laravel 10, on the other hand, is a popular PHP web framework that simplifies web development. Livewire is a Laravel package that allows you to build dynamic interfaces using PHP. In this tutorial, we’ll walk you through…

  • Install Laravel 10 Passport & Create REST API using Passport

    Install Laravel 10 Passport & Create REST API using Passport

    Laravel is a powerful PHP web application framework that allows developers to build robust and scalable applications with ease. Laravel Passport is a package that provides a complete authentication system for your Laravel applications using OAuth2. With Laravel Passport, you can easily create a RESTful API that can be consumed by any client, such as…

  • Laravel 10 Factory – Generate Dummy Data Tutorial

    Laravel 10 Factory – Generate Dummy Data Tutorial

    One of the most important aspects of software development is testing. In order to make sure that your application is working properly, you need to test it with a variety of scenarios and use cases. One of the challenges of testing is generating realistic data to use in your tests. This is where Laravel factories…