Laravel is a popular PHP framework used for developing web application. Laravel provides a many commands to help with on various development tasks. now I am explaining you how to add Twitter authentication functionality in Laravel website. Table of Contents 1. Prerequisites 2. Install Laravel Socialite Package 3. add providers and aliases in your config […]
Tag: laravel 8
Laravel : Laravel’s important commands
Laravel is a popular PHP framework used for developing web application. Laravel provides a many commands to help you with various development tasks. Here are some of the generic commonly used Laravel commands: 1. General Commands 2. Migration Commands 3. Controller and Resource Commands 4. Route and View Commands 5. Database and Seeder Commands 6. […]
Laravel 8 : step by step CRUD operation in laravel 8
Today I am explaining you step by step CRUD operation in laravel 8. In this guide, you can learn how to perform CRUD operation in Laravel 8. CRUD means four basic functionality like Create, Read, Update, Delete. It is the operations perform in the database. I am going to show you step by step through […]
how to apply/add datatable in laravel 8
Datatable is a powerful jQuery plugin. it is basically used to display data in a table format with various features like searching, sorting, pagination etc. In Laravel. it also provide some other features like CSV, Excel format sheet etc. if you want to Install the DataTables you need to follow below steps – 1. Install […]
How to set up Spatie Media Library in Laravel 8
if you are a laravel developer and want to know how to setup Spatie Media Library in Laravel 8. Spatie Media Library is easily manage files and images associated with your models. Step 1: Install the package Step 2: Publish the config file Step 3: Add the Trait to model Step 4: Migrate the database […]
Beginner: create Laravel controllers
Hi, If you are a beginner and want to know how to create laravel controller so this post is very useful for you. in this blog I will explain how to create controller in Laravel. Controller is the main key component in Laravel. it will handle all user request and return appropriate response according to […]
Form Validation In Laravel 8
in any website, we can see different type of forms validation available . we need to validate forms because it will create a bunch of garbage data in database. if we will specify which type of data we require so it will store proper data in database table. we need to overcome garbage data to […]
How to send OTP in the email on registration using Laravel API
if you want to apply send OTP on user registration and after OTP verify make and update to true is_email_verified field in users table. user can able to login if field is_email_verified is true .I understand you have already is_email_verified in users table. Step 1. I am creating new migration for adding new field in […]