Thank you so much Funda of Web IT. You are part of my coding journey since last year. This is exactly what I've been looking for a week now. Though I have to change something like admin registration would be inside the admin dashboard and also add registration for managers.
@omprakashn86277 ай бұрын
Great video! Explained very clearly step by step. Thank you.
@MdNajmulHasan-by7bv12 күн бұрын
thank you so much.
@rahmasamy74634 ай бұрын
Is that the best way for check role or make user in one table and add attribute for checking roles by middle ware ?
@datafaeri2 ай бұрын
kzbin.info/www/bejne/pZjJeYJ4Zp1-ftU
@engineer_ajangКүн бұрын
I tried to add a third system but it didn't work 😕
@eebiru657Ай бұрын
This video is so great and i learned a lot of things from this, but the only problem i'm having is that when i logged in as admin i can still search /dashboard from the user but an error occurs says route[login],
@RosyLaventura4 ай бұрын
can you do 3 users, 3rd one is owner?
@a.aliyev10366 ай бұрын
Great job
@andymasarque40045 ай бұрын
Hi. How can I add the import button when I right click?
@fundaofwebit5 ай бұрын
Please install the extension: PHP Namespace Resolver
@lailasari4232Ай бұрын
hello, i’ve tried your tutorial and it works but how to make a respective navigation for each user ?
@jasbinkarki6648Ай бұрын
1. way is to check the login user type and display only those nav bar which a user can access using @can(check your user type_ then show the view. 2. also add same condition if (auth()->user()->type is admin) return view(admin page) else regular page
@ishaqhaj67833 ай бұрын
Hey, but anyone can be an admin, if someon try like website/admin
@two-zero6 ай бұрын
Thank you bro.
@pkp47615 ай бұрын
would this work without laravel breeze?
@datafaeri2 ай бұрын
kzbin.info/www/bejne/pZjJeYJ4Zp1-ftU
@waleedeassa8894 ай бұрын
Thank you sir . how can apply Authentication and Redirect if authenticated Middlewares ?
@datafaeri2 ай бұрын
kzbin.info/www/bejne/pZjJeYJ4Zp1-ftU
@avishkabandara64534 ай бұрын
useful video
@rafaelbani88925 ай бұрын
why i dont have auth folder on my app folder?
@fundaofwebit5 ай бұрын
Please run the below 2 commands: 1. composer require laravel/breeze --dev 2. php artisan breeze:install blade That's it. You will find all the auth files.
@skyand_fly5 ай бұрын
Why i dont have auth.php?
@fundaofwebit5 ай бұрын
@skyand_fly Please run the below 2 commands: 1. composer require laravel/breeze --dev 2. php artisan breeze:install blade That's it. You will find the auth.php file under routes folder.
@skyand_fly5 ай бұрын
@@fundaofwebit thank you! I found you video about breeze logining. You have good content. Don't stay. Hello from Russia
@skyand_fly5 ай бұрын
@@fundaofwebit I do not understand how to do it if the user goes to the admin panel so that he is redirected to the login page for the administrator (admin/login) and not the general login page (/login)
@fundaofwebit5 ай бұрын
@@skyand_fly If you access (/admin/dashboard), and wanted to redirect to (/admin/login) page. follow below steps: 1. Go to bootstrap/app.php 2. in the ->withMiddleware() function. add these code : $middleware->redirectGuestsTo(function (Request $request) { if ($request->is('admin/*')) { return route('admin.login'); } return route('login'); }); 3. That's it.
@skyand_fly5 ай бұрын
@@fundaofwebit thank you, but this doesnt work((
@vm_____rr13 ай бұрын
This is insane. I don't know how is this still a trending in development world!! 😢 Every development tutorial maker is making two authentication pages (register page for custom user and other page for Admin and login pages the same!) So, what they mean is that if i have 7 user's it mean i have to prepare 7 registration pages for each user. Instead of using only one route for login and registration.
@archiealvarado88312 ай бұрын
he teaches to complicated.
@tvjklove45567 ай бұрын
Sir can you share this code please?
@datafaeri2 ай бұрын
kzbin.info/www/bejne/pZjJeYJ4Zp1-ftU
@getcsefied41845 ай бұрын
Sir , first of all huge thanks to u , for this effort...multi role in next video means , are u referring spatie video ? @fundofwebit