### Run Installation Artisan Command Source: https://github.com/tomatophp/filament-reverb-driver/blob/master/README.md Executes the custom artisan command provided by the Filament Reverb Driver package after installation. This command typically performs necessary setup tasks for the driver. ```bash php artisan filament-reverb-driver:install ``` -------------------------------- ### Install Filament Reverb Driver with Composer Source: https://github.com/tomatophp/filament-reverb-driver/blob/master/README.md Installs the Filament Reverb Driver package using Composer. This command fetches the package and its dependencies into your Laravel project. ```bash composer require tomatophp/filament-reverb-driver ``` -------------------------------- ### Publish Filament Reverb Driver Migrations Source: https://github.com/tomatophp/filament-reverb-driver/blob/master/README.md Publishes the database migration files for the Filament Reverb Driver package. These migrations are necessary to set up the required database tables for the driver. ```bash php artisan vendor:publish --tag="filament-reverb-driver-migrations" ``` -------------------------------- ### Publish Filament Reverb Driver Language Files Source: https://github.com/tomatophp/filament-reverb-driver/blob/master/README.md Publishes the language files for the Filament Reverb Driver package. This allows for translation and localization of the package's text content. ```bash php artisan vendor:publish --tag="filament-reverb-driver-lang" ``` -------------------------------- ### Publish Filament Reverb Driver Views Source: https://github.com/tomatophp/filament-reverb-driver/blob/master/README.md Publishes the view files associated with the Filament Reverb Driver package. This enables customization of the package's frontend components. ```bash php artisan vendor:publish --tag="filament-reverb-driver-views" ``` -------------------------------- ### Publish Filament Reverb Driver Config Source: https://github.com/tomatophp/filament-reverb-driver/blob/master/README.md Publishes the configuration file for the Filament Reverb Driver package. This allows you to customize settings by copying the default config to your application's config directory. ```bash php artisan vendor:publish --tag="filament-reverb-driver-config" ``` -------------------------------- ### Register Filament Reverb Driver Plugin Source: https://github.com/tomatophp/filament-reverb-driver/blob/master/README.md Registers the Filament Reverb Driver plugin within your Filament Admin Panel configuration. This step is crucial for enabling the driver's functionality in your application. ```php ->plugin(\TomatoPHP\FilamentReverbDriver\FilamentReverbDriverPlugin::make()) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.