PHP code example of munioid / filament-event

1. Go to this page and download the library: Download munioid/filament-event library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

munioid / filament-event example snippets


// config/filament-event.php
return [
    'tenant_model' => env('TENANT_MODEL', null),
];

->plugin(
    \Munioid\FilamentEvent\FilamentEventPlugin::make()
);

// xPanelProvider.php
->tenant(Team::class);

// .env
TENANT_MODEL=App\Models\YourTenantModel
bash
php artisan vendor:publish --tag="filament-event-config"