filmov
tv
Laravel Tutorial 7 - Login, Registration and Logout with PHP Laravel 10

Показать описание
*********************************************************************************************
Login, Registration and Logout with PHP Laravel 10
***********************************************************************************************
Download code from below link:
-----------------------------------------------------------------------------------------------------------------
Step 1: Install Laravel
composer create-project --prefer-dist laravel/laravel LoginRegistrationLogout
**************************************************
Cd LoginRegistrationLogout
#open in VS Code
code .
**************************************************
Step 2: Database Configuration
.env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=loginregistrationlogout
DB_USERNAME=root
DB_PASSWORD=
Next, run migration command to create database and table.
php artisan migrate
**************************************************
Step 3: Create Route
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\Auth\AuthController;
Route::get('login', [AuthController::class, 'index'])➡name('login');
Route::get('registration', [AuthController::class, 'registration'])➡name('register');
Route::get('dashboard', [AuthController::class, 'dashboard']);
Route::get('logout', [AuthController::class, 'logout'])➡name('logout');
**********************************************
Step 4: Create Controller
php artisan make:controller \Auth\AuthController
**************************************
Step 5: Create Blade Files
*********************************
Final Step : Run Laravel App:
php artisan serve
===========================================================
Note: Flow the Process shown in video.
😉Subscribe and like for more videos:
💛Don't forget to, 💘Follow, 💝Like, 💖Share 💙&, Comment
Tutorial Link:
Thanks & Regards,
Chitt Ranjan Mahto "Chirag"
_____________________________________________________________________
Note: All scripts used in this demo will be available in our website.
Link will be available in description.
#chirags
#chiragstutorial
#chiragslaraveltutorial
#chiragslaraveltutorials
#laraveltutorial
#laravel10
#laravelcourse
#installlaravel
#laravel_tutorial
#laravelphp
Login, Registration and Logout with PHP Laravel 10
***********************************************************************************************
Download code from below link:
-----------------------------------------------------------------------------------------------------------------
Step 1: Install Laravel
composer create-project --prefer-dist laravel/laravel LoginRegistrationLogout
**************************************************
Cd LoginRegistrationLogout
#open in VS Code
code .
**************************************************
Step 2: Database Configuration
.env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=loginregistrationlogout
DB_USERNAME=root
DB_PASSWORD=
Next, run migration command to create database and table.
php artisan migrate
**************************************************
Step 3: Create Route
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\Auth\AuthController;
Route::get('login', [AuthController::class, 'index'])➡name('login');
Route::get('registration', [AuthController::class, 'registration'])➡name('register');
Route::get('dashboard', [AuthController::class, 'dashboard']);
Route::get('logout', [AuthController::class, 'logout'])➡name('logout');
**********************************************
Step 4: Create Controller
php artisan make:controller \Auth\AuthController
**************************************
Step 5: Create Blade Files
*********************************
Final Step : Run Laravel App:
php artisan serve
===========================================================
Note: Flow the Process shown in video.
😉Subscribe and like for more videos:
💛Don't forget to, 💘Follow, 💝Like, 💖Share 💙&, Comment
Tutorial Link:
Thanks & Regards,
Chitt Ranjan Mahto "Chirag"
_____________________________________________________________________
Note: All scripts used in this demo will be available in our website.
Link will be available in description.
#chirags
#chiragstutorial
#chiragslaraveltutorial
#chiragslaraveltutorials
#laraveltutorial
#laravel10
#laravelcourse
#installlaravel
#laravel_tutorial
#laravelphp
Комментарии