Laravel 11 Multi Guard Authentication Tutorial | Multiple authentication for User & Admin in Laravel

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024
  • In this video, I have taught how to create a multi guard authentication in laravel 11 step by step tutorial in detail. Where we are creating Admin Guard for Authentication.
    Post - Source Code: www.fundaofweb...
    Follow us on Instagram: / funda_of_web_it
    Subscribe to my Hindi/Urdu Channel: / fundaofwebithindi

ความคิดเห็น • 31

  • @rahmasamy7463
    @rahmasamy7463 หลายเดือนก่อน +1

    Is that the best way for check role or make user in one table and add attribute for checking roles by middle ware ?

    • @datafaeri
      @datafaeri 17 วันที่ผ่านมา

      th-cam.com/video/ogfHOB18KHs/w-d-xo.html

  • @omprakashn8627
    @omprakashn8627 4 หลายเดือนก่อน +1

    Great video! Explained very clearly step by step. Thank you.

  • @vm_____rr1
    @vm_____rr1 หลายเดือนก่อน

    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.

  • @waleedeassa889
    @waleedeassa889 2 หลายเดือนก่อน

    Thank you sir . how can apply Authentication and Redirect if authenticated Middlewares ?

    • @datafaeri
      @datafaeri 17 วันที่ผ่านมา

      th-cam.com/video/ogfHOB18KHs/w-d-xo.html

  • @andymasarque4004
    @andymasarque4004 3 หลายเดือนก่อน +1

    Hi. How can I add the import button when I right click?

    • @fundaofwebit
      @fundaofwebit  3 หลายเดือนก่อน

      Please install the extension: PHP Namespace Resolver

  • @getcsefied4184
    @getcsefied4184 3 หลายเดือนก่อน

    Sir , first of all huge thanks to u , for this effort...multi role in next video means , are u referring spatie video ? @fundofwebit

    • @datafaeri
      @datafaeri 17 วันที่ผ่านมา

      th-cam.com/video/ogfHOB18KHs/w-d-xo.html

  • @RosyLaventura
    @RosyLaventura 2 หลายเดือนก่อน

    can you do 3 users, 3rd one is owner?

  • @ishaqhaj6783
    @ishaqhaj6783 หลายเดือนก่อน

    Hey, but anyone can be an admin, if someon try like website/admin

  • @pkp4761
    @pkp4761 2 หลายเดือนก่อน

    would this work without laravel breeze?

    • @datafaeri
      @datafaeri 17 วันที่ผ่านมา

      th-cam.com/video/ogfHOB18KHs/w-d-xo.html

  • @a.aliyev1036
    @a.aliyev1036 4 หลายเดือนก่อน +1

    Great job

  • @avishkabandara6453
    @avishkabandara6453 หลายเดือนก่อน

    useful video

  • @rafaelbani8892
    @rafaelbani8892 3 หลายเดือนก่อน

    why i dont have auth folder on my app folder?

    • @fundaofwebit
      @fundaofwebit  3 หลายเดือนก่อน

      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.

  • @two-zero
    @two-zero 4 หลายเดือนก่อน

    Thank you bro.

  • @tvjklove4556
    @tvjklove4556 4 หลายเดือนก่อน

    Sir can you share this code please?

    • @datafaeri
      @datafaeri 17 วันที่ผ่านมา

      th-cam.com/video/ogfHOB18KHs/w-d-xo.html

  • @skyand_fly
    @skyand_fly 3 หลายเดือนก่อน

    Why i dont have auth.php?

    • @fundaofwebit
      @fundaofwebit  3 หลายเดือนก่อน

      @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_fly
      @skyand_fly 3 หลายเดือนก่อน +1

      @@fundaofwebit thank you! I found you video about breeze logining. You have good content. Don't stay. Hello from Russia

    • @skyand_fly
      @skyand_fly 3 หลายเดือนก่อน

      @@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)

    • @fundaofwebit
      @fundaofwebit  3 หลายเดือนก่อน

      ​@@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_fly
      @skyand_fly 3 หลายเดือนก่อน

      ​@@fundaofwebit thank you, but this doesnt work((