What's Changed
⚠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