9 Create Role and Permission Policy | Laravel Filament Roles and Permissions

Поделиться
HTML-код
  • Опубликовано: 18 янв 2025

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

  • @tonyxhepaofficial
    @tonyxhepaofficial  2 года назад +4

    Create Role and Permission Policy | Laravel Filament Roles and Permissions

  • @fa93939
    @fa93939 2 года назад +2

    Thanks for this tutorial. It was my request in one of your recent lessons!

  • @kafir5801
    @kafir5801 9 месяцев назад +1

    This is an excellent video (and all the serie to which it belongs to)

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

    Hello Tony, but the writer can perform bulk delete action, and this is not good

    • @kafir5801
      @kafir5801 9 месяцев назад

      How is that and how to prevent it ?

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

    In this project, did you use Jetstream for logging process? Or only filament?
    Filament can verify email?

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

    Can you you please make a video about Multiple Panels with Roles in FilamentPHP v3?

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

      If you want restrict certain user from access another dashboard, in my case /carrier you my use the following function on your user model, Also, remember to implements FilamentUser
      public function canAccessPanel(Panel $panel): bool
      {
      if ($this->hasRole('Carrier')) {
      // Allow access only to the carrier panel
      return $panel->getId() === 'carrier';
      }

      return $this->hasRole(['Admin', 'Dispatcher', 'Manager']);
      }

  • @gentilleantonio4086
    @gentilleantonio4086 11 месяцев назад

    Thanks' Tony , for the Model extend spatie ..... ,

  • @SwastikRanjanSahoo-m2y
    @SwastikRanjanSahoo-m2y Год назад

    can this course implement the multi authentication on filamnet

  • @SwastikRanjanSahoo-m2y
    @SwastikRanjanSahoo-m2y Год назад

    how to create admin and user login panel in filament