Skip to content

Releases: tomatophp/filament-settings-hub

v1.0.9

17 Sep 16:43
Compare
Choose a tag to compare

v1.0.8

16 Sep 13:11
Compare
Choose a tag to compare
  • update main group name to Settings and page name to Settings
  • add filament-plugins integration.

Full Changelog: v1.0.7...v1.0.8

v1.0.7

11 Sep 12:52
Compare
Choose a tag to compare

Add Plugin Options

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

Allow Shield

to allow filament-shield for the settings please install it and config it first then you can use this method

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

to make a secure setting page just use this trait

use TomatoPHP\FilamentSettingsHub\Traits\UseShield;

Update SettingHold

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`,
]);

Full Changelog: v1.0.6...v1.0.7

v1.0.6

05 Sep 11:58
5499354
Compare
Choose a tag to compare

What's Changed

  • Fixed getNavigationGroup() return, which was hard-coded by @ltlacerda in #3

New Contributors

Full Changelog: v1.0.5...v1.0.6

v1.0.5

30 Jul 15:41
Compare
Choose a tag to compare
  • move setting to plugin provider to catch the correct panel URL

Full Changelog: v1.0.4...v1.0.5

v1.0.4

15 May 15:06
Compare
Choose a tag to compare
  • reverse group ordering by @3x1io

Full Changelog: v1.0.3...v1.0.4

v1.0.3

08 Apr 13:00
Compare
Choose a tag to compare
  • fix Regarding Panels and not to Assume Panel is always admin #2 by @3x1io

Full Changelog: v1.0.2...v1.0.3

v1.0.2

08 Apr 05:45
Compare
Choose a tag to compare
  • fix Filament Tenancy / Team support #1 By @3x1io

v1.0.1

06 Apr 19:26
Compare
Choose a tag to compare

Full Changelog: v1.0.0...v1.0.1

  • add support for translations by @3x1io

v1.0.0

06 Apr 19:01
Compare
Choose a tag to compare