Laravel 8 Authentication with Breeze Tutorial

Laravel-8-Authentication-with-Breeze-Tutorial

16, For every web application – login & registration must be a needed part. Inside this article we will see Laravel 8 Authentication with Breeze. We will do Laravel authentication with breeze. Laravel founder Taylor otwell released laravel breeze with simple authentication scaffolding. Inside this we will see composer package for breeze. Laravel Breeze … Read more

Stripe Payment Gateway Integration in Laravel 8

Laravel-8-Stripe-Payment-Gateway-Integration

4, As we all know in most web application either in Laravel 8 or any of the PHP Framework, we sometimes need to integrate payment gateway. Inside this article we will learn Stripe payment gateway integration in Laravel 8. How to Integrate Stripe payment gateway in Laravel 8, we will see each steps in … Read more

How to Create Multi Language Website in Laravel 8

Create-Multi-Language-Website-in-Laravel-8

20, Today we see generally sites come with multi language. Inside this article we will see the concept to create Multi language website in Laravel 8. Multi language in laravel is termed as Laravel Localization. Laravel Multi language Website guide step by step tutorial. Learn More – Concept of Global Middleware in Laravel 8 … Read more

Laravel 8 DataTable Ajax Pagination with Search And Sort

Laravel-8-DataTable-Ajax-Pagination-with-Search-and-Sort

21, Inside this article we will learn about Laravel 8 DataTable Ajax Pagination with Search and Sort. We will create server side data listing in laravel 8 with all features of searching and sorting. Server side pagination using Ajax in Laravel 8. Learn More – Concept of Route Model Binding in Laravel 8 with … Read more

Laravel 8 Send Mail using Gmail SMTP Server

Laravel-8-send-email-using-gmail-smtp-server

14, Sending an email in web application is very common. Laravel provides the predefined Mail class used to send mail. We only need to use & configure it. The content of this article is very useful to understand the things that we need to send a normal email using SMTP. Inside this article we … Read more

Generate QR Code Laravel 8 Example

Generate-QR-Code-in-Laravel-8

7, Inside this article we will learn to generate QR code in Laravel 8. There are very basics to create QR code in laravel 8. QR code generate with the help of composer package in Laravel 8. A QR code is a type of matrix barcode invented in 1994 by the Japanese automotive company … Read more

Complete Laravel 8 CRUD Application Tutorial

Complete Laravel 8 CRUD Application Tutorial

13, Laravel 8 is an open source PHP Framework. Inside this article we will see about implementation of Laravel 4 CRUD Application Tutorial. Nowadays, every application have a common operation CRUD. CRUD stands for Create, Read, Update & Delete. We will see, about each operation of CRUD in Laravel 8 in a very clear … Read more

Seeder with Faker Library Concept in Laravel 8

Laravel 8 Factory, Seeder & Faker

26, For application testing we always need data. In case if our application is running live then we can create test data via web portal or from some where else. But at initial point i.e at development phase we need data in bulk amount. In laravel we have the default system to generate fake … Read more

How to Create & Use Components in Laravel 8

Laravel 8 Components Tutorial

34, Components are the re-usable section or layout which we can use inside laravel application. In laravel there are two methods to writing a components: class based components and anonymous components. Learn More – Call MySQL Stored Procedure in Laravel 8 Tutorial Chatbot Conversation integration in Laravel 8 Using Botman Complete Laravel 8 CRUD … Read more

Laravel 8 Layouts And Views Complete Guide

Laravel 8 Layouts And Views

23, For any application we always should have a user interface in short UI to present application. It can be in any form like an admin panel, social platform, a website etc. Laravel is a MVC supported framework, so here inside this keyword V stands for Views. Laravel views serve HTML to browser. To … Read more