github Devonab/filament-easy-footer v2.1.0-beta

latest release: v2.1.0
2 months ago

What's Changed

  • Fix sidebar footer + refactor config file for PHPStan error by @Devonab in #14

⚠Note for customising the application name and GitHub

It is now necessary to publish the configuration file if you wish to customise the name of the application in the footer and link a GitHub repository.

We invite you to consult the readme.

// Old plugin config file code (v2.0.x)
return [
    'app_name' => env('APP_NAME', 'Filament Footer'),

    'github' => [
        'repository' => env('GITHUB_REPOSITORY', ''),
        'token' => env('GITHUB_TOKEN', ''),
        'cache_ttl' => env('GITHUB_CACHE_TTL', 3600)
    ],
];

// Old plugin config file code (v2.1.x)
return [
    'app_name' => null,

    'github' => [
        'repository' => null,
        'token' => null,
        'cache_ttl' => 3600,
    ],
];

Full Changelog: v2.0.0-beta...v2.1.0-beta

Don't miss a new filament-easy-footer release

NewReleases is sending notifications on new releases.