Tag

Laravel

Browsing

Laravel 8 Authentication with Breeze in this tutorial, I will show you how we can setup Laravel 8 Authentication with Breeze. Laravel 8 breeze auth is simple and lightweight scaffolding. First of all, you need to follow this step. Step 1: Install laravel 8 App Step 2: Database Configuration in .env file Step 3: Install breeze Auth Scaffolding Step 4: Run PHP artisan Migrate Step 5: Install Npm Packages Step 6: Run Development Server Step…

Laravel 8 API authentication with passport tutorial. In this tutorial, I will show you how to build rest APIs with passport authentication in Laravel 8. Also, I will show you how to install passport and configure passport in laravel 8 app. First of all, you need to follow this step. Laravel 8 API Authentication with Passport Tutorial Step 1: Install laravel 8 AppStep 2: Database Configuration in .env fileStep 3: Install Passport AuthStep 4: Passport…

https://www.youtube.com/watch?v=oBzc2EtH6xY Laravel 8 Crud with Image Upload Tutorial Laravel 8 crud example with image upload. In this tutorial, I will show you how to create ajax crud app with image file upload. This Laravel 8 crud example with image file upload tutorial guide you step by step. https://www.youtube.com/watch?v=oBzc2EtH6xY Step 1 – Install laravel 8 AppStep 2 – Connecting App to DatabaseStep 3 – Create Migration And ModelStep 4 – Creating Resource ControllerStep 5 – Add…

How to Verify phone number using firebase in laravel 8 Step 1: Create the application We need to run command to create Laravel 8 projects. composer create-project –prefer-dist laravel/laravel l8firebase https://www.youtube.com/watch?v=2I2vcAifsPU Step 2: We need to create Firebase Console Account and check below details. Go to Firebase > Select your Project > Authentication > Sign in method > Scroll Down -> Add your domain under ‘Authorize Domain’ section. Go to Firebase Console and select your…

How to Integrate Razorpay Payment Gateway in Laravel 8 Prerequisites PHP >= 7.3BCMath PHP ExtensionCtype PHP ExtensionFileinfo PHP extensionJSON PHP ExtensionMbstring PHP ExtensionOpenSSL PHP ExtensionPDO PHP ExtensionTokenizer PHP ExtensionXML PHP ExtensionGetting started https://www.youtube.com/watch?v=d_TG77u6-AU Step 1: Create the application We need to run command to create Laravel 8 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…

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

Laravel Specific Table Migration First you should create one migration file for your table like: public function up() { Schema::create(‘test’, function (Blueprint $table) { $table->increments(‘id’); $table->string(‘fname’,255); $table->string(‘lname’,255); $table->rememberToken(); $table->timestamps(); }); } After migrations you should put the particular file name. or if you have any folder inside migration then just add that folder name after the migration. php artisan migrate:refresh –path=database/migrations/2020_04_19_133129_create_tests_table.php

How to use multiple authentication guards in Laravel 8 app https://youtu.be/-b3j0nOuF44 Prerequisites PHP >= 7.3BCMath PHP ExtensionCtype PHP ExtensionFileinfo PHP extensionJSON PHP ExtensionMbstring PHP ExtensionOpenSSL PHP ExtensionPDO PHP ExtensionTokenizer PHP ExtensionXML PHP Extension Getting started Check all Prerequisites are installed in your machine. then this tutorial is already looking for you, we will create 2 user class – admin, blogger and we will make guards for 2 classes and restriction different parts of the application…

Step 1: Install Laravel 8 Project I am going to install a laravel project using composer. composer create-project –prefer-dist laravel/laravel laravel8 Step 2: Going inside of project using the command cd laravel8 Step 3: Setup MySQL database Now, configure this database in the .env file. DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laravel8 DB_USERNAME=root DB_PASSWORD=root@123 Step 4: Create ajax_images Table and Model also. Here, I have created migration for ajax_images using Laravel 8 php artisan command, you can check…