PHP code example of jeffersongoncalves / filament-fathom
1. Go to this page and download the library: Download jeffersongoncalves/filament-fathom 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/ */
jeffersongoncalves / filament-fathom example snippets
use JeffersonGoncalves\Filament\Fathom\FathomPlugin;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->plugins([
FathomPlugin::make(),
]);
}
FathomPlugin::make()->settingsPage(false)
bash
php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="migrations"
bash
php artisan vendor:publish --tag=fathom-settings-migrations
php artisan migrate