PHP code example of tomatophp / filament-settings-hub

1. Go to this page and download the library: Download tomatophp/filament-settings-hub 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/ */

    

tomatophp / filament-settings-hub example snippets


->plugin(
    \TomatoPHP\FilamentSettingsHub\FilamentSettingsHubPlugin::make()
        ->allowSiteSettings()
        ->allowSocialMenuSettings()
)

setting($key, 'default value');

use TomatoPHP\FilamentSettingsHub\Facades\FilamentSettingsHub;
use TomatoPHP\FilamentSettingsHub\Services\Contracts\SettingHold;

FilamentSettingsHub::register([
    SettingHold::make()
        ->order(2)
        ->label('Site Settings') // to translate label just use direct translation path like `messages.text.name`
        ->icon('heroicon-o-globe-alt')
        ->route('filament.admin.pages.site-settings') // use page / route
        ->page(\TomatoPHP\FilamentSettingsHub\Pages\SiteSettings::class) // use page / route 
        ->description('Name, Logo, Site Profile') // to translate label just use direct translation path like `messages.text.name`
        ->group('General') // to translate label just use direct translation path like `messages.text.name`,
]);


->plugin(
    \TomatoPHP\FilamentSettingsHub\FilamentSettingsHubPlugin::make()
        ->allowShield()
)

use TomatoPHP\FilamentSettingsHub\Traits\UseShield;

'upload' => [
    'disk' => 's3',
    'path' => 'settings',
],
bash
php artisan filament-settings-hub:install
bash
php artisan vendor:publish --tag="filament-settings-hub-config"
bash
php artisan vendor:publish --tag="filament-settings-hub-views"
bash
php artisan vendor:publish --tag="filament-settings-hub-lang"
bash
php artisan vendor:publish --tag="filament-settings-hub-migrations"
bash
composer analyse