Category

laravel 9

Category

Laravel 9 is the latest version of the Laravel framework, and it comes with a lot of new features and improvements. Here is a basic tutorial on how to create a CRUD (Create, Read, Update, Delete) application in Laravel 9: Create a new Laravel project: composer create-project –prefer-dist laravel/laravel blog Create a new migration for the database table: Copy codephp artisan make:migration create_tasks_table Define the fields for the tasks table in the migration file, located…

How to Integrate Razorpay Payment Gateway in Laravel 9 Prerequisites PHP >= 8BCMath PHP ExtensionCtype PHP ExtensionFileinfo PHP extensionJSON PHP ExtensionMbstring PHP ExtensionOpenSSL PHP ExtensionPDO PHP ExtensionTokenizer PHP ExtensionXML PHP ExtensionGetting started Step 1: Create the application We need to run command to create Laravel 9 projects. composer create-project –prefer-dist laravel/laravel l8Razorpay Step 2: Create Razorpay Account Create Account from here: www.razorpay.com. Once register successfully. you need to go bellow link and get id and secret…

In this tutorial, I will show you, how you can integrate a Laravel 9 Cron Job Task Scheduling. I have written step by step instructions of Laravel 9 Cron Job Task Scheduling Step 1 – Install laravel 9 AppStep 2 – Create New CommandStep 3 – Register as Task SchedulerStep 4: Run Scheduler Command For Test Step 5: Laravel Set CronJob on live server Step 1 – Install laravel 9 App We need to run the…

In this tutorial,I will show to you, how you can integrate a full-calendar in laravel 9application. I have written step by step instruction of laravel 9 FullCalendar ajax. In this example, I will implement add an event, update event and delete event on the full-calendar using ajax. Step 1 – Install laravel 9 AppStep 2 – Connecting App to DatabaseStep 3 – Create Migration And ModelStep 4: Create Model Step 5: Create Events Table Seeder…

Today, I am going to show you how to create a custom 404 page in laravel 9.First, you need to create a page inside of resources/views/errors/404.blade.phpNow, Code inside of 404.blade.php <!DOCTYPE html> <html lang=”en”> <head> <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css”> <script src=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js” ></script> <style type=”text/css”> *{ transition: all 0.6s; } html { height: 100%; } body{ font-family: ‘Lato’, sans-serif; color: #888; margin: 0; } #main{ display: table; width: 100%; height: 100vh; text-align: center; } .fof{ display: table-cell;…

Hey, Reader Here, I will brief you step by step login with google account in Laravel 9 socialite. in Laravel 9 socialite provides API to login with Gmail account. I will help you step by step instruction. let’s follow the tutorial and implement it. Step 1: Install Laravel 9 I am going to install Laravel 9 projects. laravel new google_login Now I am going inside of the folder cd google_login Step 2: Install Socialite In…

In this laravel tutorial, we will learn Google Line Chart First of all, you need to follow this step. Step 1: Install laravel App Step 2: Database Configuration in .env file Step 3: Configure route Step 4: Create Controller Step 5: Create blade Step 6: Run Development Server Step 1: Install laravel 9 App We need to run command to create Laravel 9 projects. composer create-project –prefer-dist laravel/laravel google_line_chart cd google_line_chart Step 2 : Connecting…

In this laravel tutorial, we will learn about how to check user online status and last seen. If you need in your application user online status and last seen. At that time, you need to show users status (online/offline) and last seen. So this tutorial will guide you step by step from scratch to implement Laravel determine users status and last seen app. Laravel Determine User Online Status in Laravel First of all, you need…

In this laravel tutorial, we will learn about how to upload file in s3 You can follow these steps by step explain to you how to upload images in the s3. you can also upload files in s3 using laravel but in this article, we will upload the images in the s3 using laravel. Step 1: Create S3 Bucket You need to login your AWS account then search s3 from search box and follow bellow…

https://www.youtube.com/watch?v=JJ5ItTIQYMc In this tutorial, we will learn about how to make a shopping cart in laravel 9. if you creating an eCommerce project then you need to implement in cart functionality. Step 1: Install Laravel 9 composer create-project –prefer-dist laravel/laravel laravel_cart cd laravel_cart Step 2: Connecting App to Database Next step, we will set the database credentials in the application. Let’s open your project .env file and set the database credentials here. DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306…