Releases: tomatophp/filament-issues
Releases · tomatophp/filament-issues
v1.0.1
Register Repo using Facade
you can register your repo by use this code on your AppServiceProvider.php
public function boot()
{
FilamentIssues::register([
'tomatophp/filament-issues',
'tomatophp/filament-cms',
'tomatophp/filament-pms',
]);
}Integration With Filament CMS Builder
you can use this package with Filament CMS Builder by use this code on your AppServiceProvider.php
public function boot()
{
FilamentIssues::register(
fn() => Post::query()
->where('type', 'open-source')
->pluck('meta_url')
->map(
fn($item) => str($item)
->remove('https://github.com/')
->remove('https://www.github.com/')
->toString()
)
->toArray()
);
} Full Changelog: v1.0.0...v1.0.1
v1.0.0
Full Changelog: https://github.com/tomatophp/filament-issues/commits/v1.0.0