Laravel User Management System | Roles and Permissions | User Login and register | Part #1 IN HINDI

  Рет қаралды 28,934

Ajay yadav

Ajay yadav

Күн бұрын

In this video, We are going to discuss Laravel User Management System. We'll implement a user login, register, and admin login page. We'll also implement Roles and Permissions in the user management system. I have discussed Laravel authentication with the laravel breeze package and custom login for users.
You'll learn how to create admin login and user log in with laravel. how to create custom guard and middleware in laravel and how to use them.
Our Playlist:
Laravel User Management System :
• Laravel User Managemen...
Computer Facts: • Computer facts
Laravel Auth System :
• Laravel Multi Auth System
Laravel And Vuejs
• Laravel And Vuejs
Github link :
github.com/Aja...
#LaravelUserManagementSystem #LaravelAdminAndUser
Please subscribe to my channel and share the video with your friends.

Пікірлер: 67
@daniels7250
@daniels7250 7 ай бұрын
definitly the best laravel breeze multi auth tutorial on internet thanks!
@ajay-yadav
@ajay-yadav 7 ай бұрын
Glad you think so!
@AhmadRaza-qt5ox
@AhmadRaza-qt5ox Жыл бұрын
your 25 minutes video is almost i hour video for us - So Speedy
@RahulPatil-zp7dq
@RahulPatil-zp7dq 10 ай бұрын
i got same issue like (Class "App\Http\Controllers\Front\Auth\LoginRequest" does not exist) follow all steps and 2nd is after adding templates this login and logout issue logout not working 1st time and after successfully login not redirect other page manually refresh then is redirect.
@arshadali2645
@arshadali2645 Жыл бұрын
Very nice tutorial thank you so much dear Ajay Yadav
@ajay-yadav
@ajay-yadav Жыл бұрын
Thank you so much 😀
@swapnilcodes
@swapnilcodes 2 жыл бұрын
Wow... thanks sir...I find it difficult to understand roles and permissions in Laravel...I hope in this video sara smjh aayega...Thanks for the Tutorial...😊😁😍
@Naimullah_naim
@Naimullah_naim 9 ай бұрын
when you integrate template into admin
@AhsanKhan89
@AhsanKhan89 Жыл бұрын
Can you please make a video on Spatie Multitenancy v3 with Spatie Laravel Permissions? What guards settings should I set up for multiple tenant databases?
@alikhan4772
@alikhan4772 2 жыл бұрын
And you create middleware for front user but as per my knowledge ->middleware('auth:front') will work same? isn't is
@vibe_with_ritikaa
@vibe_with_ritikaa Жыл бұрын
excellent video. i just want muti tenancy in it? how can I do that ?
@ajay-yadav
@ajay-yadav Жыл бұрын
I intend to share a video discussing the concept of multi-tenancy.
@techprogramming9827
@techprogramming9827 Жыл бұрын
sir the data is sending or inserted into users table instead of frontendusers table what's the issue can you please tell me?
@ankush0094
@ankush0094 2 жыл бұрын
What if we need to manage login by using same table instead of creating different table using role type without using guard. Can we do it on breeze
@fitbouncer6795
@fitbouncer6795 2 жыл бұрын
1. api kyse banate hai, explain with project 2. how to use ckeditor or summernote in laravel admin 3. sms api intregration 4. paymentgatway integration (any one gateway/ most used in job) 👆👆iss topic pe alag alag tutorial banaye na,, 👆👆 aap ka teaching way muje boht achha lgta hai, jaldi samajme aata hai👍
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Good suggestions... Thank you... I'll try to cover these topics in upcoming videos 👍
@alikhan4772
@alikhan4772 2 жыл бұрын
Thanks for the tutorial, If i have multiple user roles but view template is same for all users (super ,admin, employees and client ) then should I go with separate guard for admin or not.
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Use roles and Permissions, no need to use separate guards
@komalirshad9007
@komalirshad9007 Жыл бұрын
Any solution for Unidentified type for Frontuser error?
@ajay-yadav
@ajay-yadav Жыл бұрын
send me proper error
@vineetgawad1320
@vineetgawad1320 2 жыл бұрын
sir, i am not getting the admin login page : The request url is not found, what would be the mistake can you explain.
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Route issue - check auth.php or check description and download the project from GitHub
@techprogramming9827
@techprogramming9827 Жыл бұрын
Trying to get property 'name' of non-object (View: C:\xampp\htdocs\UserManagemnetSystem\UserManagement esources\views\front\layouts avigation.blade.php) it shows me this error in when i registered the user can you please tell me what's the issue is?
@exchrist
@exchrist Жыл бұрын
ran into the same problem, fixed it by running "php artisan optimize"
@MehediHasan-cc4hz
@MehediHasan-cc4hz Жыл бұрын
awosome..
@kaptaansingh
@kaptaansingh 2 жыл бұрын
how can use custom guard for admin.. agar admin ke liye alag se guard use krte hain par roles create krte waqt bhi default web guard save ho raha hai guard kaise change krenge? i am using laravel 8
@ajay-yadav
@ajay-yadav 2 жыл бұрын
good question. ... dekho agr aap ko admin k liye default guard(web) use nhi krna hai to aap jaise maine user k liye ek guard create kiya same admin k liye bhi aap kr skte ho ... but roles and permission k liye aap ko bar bar spatie package ko btana pdega ki kis guard se role ko access krna hai ... kyonki by default spatie package web guard hi use krta hai to ... usko overwrite krne k liy aap ko bar bar guard bhi likhna pdega ... for example: while creating roles : $role = Role::create(['guard_name' => 'admin', 'name' => 'manager']); To check if a user has permission for a specific guard: $user->hasPermissionTo('publish articles', 'admin'); @role('super-admin', 'admin') I am a super-admin! @else I am not a super-admin... @endrole to yha aap dekhoge ki admin guard ko bar bar likhna pd rha hai .. esiliye maine user k liye custom guard bnaya aur admin k liye default web guard choose kiya.
@techprogramming9827
@techprogramming9827 Жыл бұрын
exactly writing the same code i did not get the Fronlogin page
@ajay-yadav
@ajay-yadav Жыл бұрын
Do one thing... Download the code from Github and observe the issue
@RajeevKumar-rr9gb
@RajeevKumar-rr9gb Жыл бұрын
Thank you sir
@tharujaya5387
@tharujaya5387 2 жыл бұрын
Sir do you do online classes ?
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Not now, I'll let you know
@kartikchandivade4557
@kartikchandivade4557 6 ай бұрын
sir sql file chahiye milegi kya?
@jubersheikh1905
@jubersheikh1905 2 жыл бұрын
brother please put email verification in auth system and otp or any random id which can verify the user
@mouneshpattar224
@mouneshpattar224 2 жыл бұрын
hello sir its really great tutorial thank you
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Thanks and welcome
@rajabhishek2936
@rajabhishek2936 2 жыл бұрын
Please make video on laravel appointment system with time slot
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Sure
@jyotrimayarout9332
@jyotrimayarout9332 2 жыл бұрын
Sir when am trying to login for admin its showing these credential do not match our records
@ajay-yadav
@ajay-yadav 2 жыл бұрын
ok record in the database ... make sure you type correct password
@prafulbanayat3676
@prafulbanayat3676 2 жыл бұрын
Sir, please make any important project series on laravel 8 which includes almost every concept..
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Ok praful
@zubairblaze
@zubairblaze 2 жыл бұрын
Nice one. Great effort bro. Keep it up....
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Thanks a ton
@manishkumar-fe8rj
@manishkumar-fe8rj 2 жыл бұрын
Great job sir 😊😊😊
@mouneshpattar224
@mouneshpattar224 2 жыл бұрын
for front users dashboard page is not working
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Mounesh just do one thing ... GitHub link is in the description ... download and run the project ... and let me know if you need any help.
@mouneshpattar224
@mouneshpattar224 2 жыл бұрын
@@ajay-yadav thank you sir
@dkchaudhary6273
@dkchaudhary6273 2 жыл бұрын
Great 🙏
@shekharraj777
@shekharraj777 2 жыл бұрын
Target class [front] does not exist. I am getting this error plz solve this error
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Check guard name in config/auth.php check and front.php model name....
@shekharraj777
@shekharraj777 2 жыл бұрын
@@ajay-yadav Thanks sir its solved..the tutorial is very helpful
@shekharraj777
@shekharraj777 2 жыл бұрын
@@ajay-yadav sir 'app/model/user' not found while seeding i have error
@ajay-yadav
@ajay-yadav 2 жыл бұрын
@@shekharraj777 "app/model/user" , Replace "model" with "Models" (directory name models not model)
@ajay-yadav
@ajay-yadav 2 жыл бұрын
sorry for late reply
@hidigital829
@hidigital829 2 жыл бұрын
Sir im new user...how to setup laravel in win 10
@ajay-yadav
@ajay-yadav 2 жыл бұрын
visite laravel documentation
@ALPHAMINDOFFICAL
@ALPHAMINDOFFICAL 2 жыл бұрын
Greattt
@jubersheikh1905
@jubersheikh1905 2 жыл бұрын
explain pipeline pattern and Helpers and repository pattern
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Sure 👍
@faeliry
@faeliry 2 жыл бұрын
route[admin.login] not defined sir
@ajay-yadav
@ajay-yadav 2 жыл бұрын
check web.php and add ("->name('admin.login')") at the end of the admin/login route
@jubersheikh1905
@jubersheikh1905 2 жыл бұрын
make multilevel categories and subcategories like flipkart explain the logic
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Ok,
@ajay-yadav
@ajay-yadav 2 жыл бұрын
Admin : name = admin email = admin@admin.com password = password Part #2: kzbin.info/www/bejne/gHbMh3SnfdNjabs
Зу-зу Күлпаш 2. Бригадир.
43:03
ASTANATV Movie
Рет қаралды 684 М.
How I Turned a Lolipop Into A New One 🤯🍭
00:19
Wian
Рет қаралды 10 МЛН
Synyptas 4 | Жігіттер сынып қалды| 3 Bolim
19:27
kak budto
Рет қаралды 1,2 МЛН
Laravel Roles and Permissions: All CORE Things You Need To Know
16:32
Laravel Daily
Рет қаралды 222 М.
Jetstream/Fortify Multi-Auth: Roles, Permissions and Guards
19:00
Laravel Daily
Рет қаралды 100 М.
SC001 - Laravel 8 Multi Auth based on Roles
41:03
Sawa Stacks
Рет қаралды 48 М.
Building Secure Multi-Auth Systems in Laravel 11 with Laravel Breeze
29:36
Laravel 8 Multi Guards Authentication
1:15:01
Sawa Stacks
Рет қаралды 65 М.