jornboerema/bz-user-management

dev-master 2024-09-06 08:10 UTC

This package is auto-updated.

Last update: 2025-03-06 09:18:14 UTC


README

For this plugin to work, you'll need to have the Filament Shield plugin installed and configured.

Installation

Your can install the package via composer:

composer require jornboerema/bz-user-management

Install the plugin with:

php artisan bz-user-management:install

Usage

Register the plugin in your AdminPanelProvider.

use Filament\Panel;
use JornBoerema\BzUserManagement\BzUserManagementPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            BzUserManagementPlugin::make(),
        ]);
}

Publish assets