I had the same problem and fixed just by converting the DB_HOST constant in the .env File FROM 127.0.0.1 into localhost DB_HOST = localhost.…
How to Compare Two Dates in Laravel Carbon? eq() equalsne() not equalsgt() greater thangte() greater than or equalslt() less thanlte() less than or equals…
In this tutorial, we will learn about how to make a shopping cart in laravel 8. if you creating an eCommerce project then you…
Laravel 8 Sanctum provides a simple authentication system for SPAs web Application, mobile applications, and simple, token based APIs. Sanctum also allows each user…
In this laravel tutorial, we will learn about how to make file manager in laravel Step 1: Install Laravel 8 composer create-project –prefer-dist laravel/laravel…
In this laravel tutorial, we will learn about how to upload file in s3 You can follow these steps by step explain to you…
Here is official document that talk about it. You can check it Inside AppServiceProvider use Illuminate\Pagination\Paginator; public function boot() { Paginator::useBootstrap(); } Doc: https://laravel.com/docs/8.x/pagination#using-bootstrap
In this laravel tutorial, we will learn about how to check user online status and last seen. If you need in your application user…
Laravel 8 Bootstrap Auth Scaffolding First of all, you need to follow this step. https://www.youtube.com/watch?v=JYL1iXFBAe4 Step 1: Install laravel 8 App Step 2: Database…
Laravel 8 Authentication with Breeze in this tutorial, I will show you how we can setup Laravel 8 Authentication with Breeze. Laravel 8 breeze…
Laravel 8 Botman Chatbot in this tutorial, I will show you how we can setup Botman Chatbot in your Laravel application. Also, I will…
How To Generate Barcode In Laravel 8 Step 1: Create the application We need to run command to create Laravel 8 projects. composer create-project…