Gates (Permissions and Roles) | Laravel 10 Tutorial #36

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024
  • Laravel 10 Feed page
    On this episode we will look into laravel gates, an easy way to define permission and authorize users.
    Playlist of Laravel 10 Tutorial Course :
    • Laravel 10 Beginners C...
    Boots Watch :
    bootswatch.com/
    Laravel debug bar:
    github.com/bar...
    HTML template Github Link:
    github.com/yel...
    What is Laravel :
    Laravel is a free and open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model-view-controller architectural pattern and based on Symfony.
    en.wikipedia.o...
    If you're looking to learn how to authenticate a user using Laravel 10, then this is the video for you! In this tutorial, In this tutorial, we'll create a simple registration form that users will be able to submit.
    If you have any questions or problems please leave a comment.
    Laravel Blade
    Laravel crash course
    Laravel Database and crud tutorial
    Laravel Login and Authentication
    Laravel registration

Комментарии • 24

  • @milesparker557
    @milesparker557 6 месяцев назад +6

    For those using Laravel 11:
    `$this->authorize()` doesn't seem to work. Use `Gate::authorize()` instead.

    • @AnthonyEmacs
      @AnthonyEmacs 4 месяца назад +3

      you saved me , thanks!

    • @emiriin
      @emiriin Месяц назад

      You are a superhero, thanks!

  • @kouzokiodin3623
    @kouzokiodin3623 3 месяца назад +2

    Sincerly i have watched more than 5 laravel courses but this course is the best one so far because of the way of explaining of this dude, Thanks man!

  • @hamzameski3297
    @hamzameski3297 8 месяцев назад +2

    Honesly one of the most based on projects learning courses I've seen ever,
    Stuffs are explained as they should be,
    Free course at the same time,
    Thank you Sure so match for your efforts

  • @pmusic708
    @pmusic708 4 месяца назад

    Please tell me what to do if I create gate using Admin model?

  • @Mr.Capone-
    @Mr.Capone- Год назад +1

    я тут! Я Русский - попа уже лица
    Я узкий ...... ляляляля Французский!!!

  • @LoneTaha
    @LoneTaha 6 месяцев назад

    thanks a lot!

  • @ousssika5359
    @ousssika5359 Год назад +1

    thanks for the code as , usual , one issue use stille can access to login and register when you are already authenticated

    • @yelocode
      @yelocode  Год назад

      I fix this on the next episode, hopefully will upload it tomorrow or after tomorrow. But for a quick fix need to add the guest middleware to login and register routes. Thanks for watching.

  • @traiit
    @traiit 3 месяца назад

    Please share settings vscode or theme

  • @hollengrhen1
    @hollengrhen1 4 месяца назад +1

    Thanks. This reminds me of Jeffrey Way from Laracasts

  • @HamadAbdulla_7
    @HamadAbdulla_7 Год назад +2

    Great

    • @yelocode
      @yelocode  Год назад

      Thanks for watching.

  • @abdalkhalekchamkha3622
    @abdalkhalekchamkha3622 Год назад +1

    Great , can you do more Gate videos
    for example how can i handle many Overlapping permission
    such as group manager admin user post user and so one

    • @yelocode
      @yelocode  Год назад +1

      Thanks for watching. I will be covering this topic a little bit in the upcoming video. I will also be doing a mini course on handling roles and permission in Laravel soon hopefully.

    • @abdalkhalekchamkha3622
      @abdalkhalekchamkha3622 Год назад

      yeah thank you for what you doing for laravel community@@yelocode

  • @kadirertan8664
    @kadirertan8664 7 месяцев назад

    Super easy to understand. Good job!🔥🔥🔥

  • @plusSilver
    @plusSilver 11 месяцев назад +1

    Hi master, by some reason I have the next error:
    App\Providers\AuthServiceProvider::App\Providers\{closure}(): Argument #2 ($idea) must be of type App\Providers\Idea, App\Models\Idea given, called in /home/silver/Documentos/Laravel/plusSilver/vendor/laravel/framework/src/Illuminate/Auth/Access/Gate.php on line 548
    I hope you can help me, regards

    • @yelocode
      @yelocode  11 месяцев назад +1

      Thanks for watching.
      From the error it seems, you have not imported Idea class in your authServiceProvider.
      Adding "use App\Models\Idea;" to the top of the AuthServiceProvider file should solve the issue.
      I hope that fixes the issue.
      I also have the code for this episode on github, if you want to compare your code with it: github.com/yelocode/ideas/commit/5e7ec3dae5a3068858b1093a0dff2e961939e710

    • @plusSilver
      @plusSilver 11 месяцев назад +1

      @@yelocode You are right, thank you very much

  • @kreaweb-be
    @kreaweb-be Год назад +2

    Well explained. Good job!!
    You can cast the is_admin as boolean in the model.
    protected $casts = [
    'email_verified_at' => 'datetime',
    'password' => 'hashed',
    'is_admin' => 'boolean',
    ];
    For more complex applications, I like to use the Spatie Roles and Permissions package.

    • @yelocode
      @yelocode  Год назад

      Thanks for watching. Yea casts is definitely really useful here, specially for dates.