Filament Shield
How to apply shield to third party plugins? I have disabled plugin menu in shield, but non authorized user still can access it
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
protected $policies = [
'Spatie\Permission\Models\Role' => 'App\Policies\RolePolicy',
];
}