Category

Laravel 8

Category

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 Configuration in .env file Step 3: Install Laravel UI Step 4: Install Bootstrap Auth Scaffolding Step 5: Run PHP artisan Migrate Step 6: Install Npm Packages Step 7: Run Development Server Step 1: Install laravel 8 App We need to run command to create Laravel 8 projects. composer create-project –prefer-dist laravel/laravel…

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 Botman Chatbot in this tutorial, I will show you how we can setup Botman Chatbot in your Laravel application. Also, I will show you how to Install Botman and Botman Driver in laravel 8 app. First of all, you need to follow this step. Step 1: Install laravel 8 AppStep 2: Database Configuration in .env fileStep 3: Install Botman and Botman DriverStep 4: Create Configuration FileStep 5: Create ControllerStep 6: Add RouteStep 7…

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 Generate Barcode 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 laravel-8-barcode-generator https://www.youtube.com/watch?v=ob2gMikwJnI&t=6s Step 2: Install picqer/php-barcode-generator Package composer require picqer/php-barcode-generator Step 3: Create Route Now I am going to create route for calling controller and function. routes/web.php <?php Route::view(‘barcode’, ‘barcode’); Step 4: Create Blade file resources/views/barcode.blade.php <!DOCTYPE html> <html> <head> <title>Barcode Generator In Laravel 8 </title> <!– CSS only…

Laravel Model Observers Tutorial Example From Scratch First of all, you need to follow this step. Step 1: Install laravel 8 App Step 2: Database Configuration in .env file Step 3: Run PHP artisan Migrate Step 4: Create Model Step 5: Create observers class for Product. Step 6: Add Routes Step 7: Creating Product Controller Step 8: Run Development Server Step 1: Install laravel 8 App We need to run command to create Laravel 8…

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…