public function boot(): void { Gate::before(function (User $user, string $ability) { return $user->hasRole('Super Admin') ? true : null; }); }