share-lt/app/Filament/Resources/Changes/Pages/ListChanges.php
jon brookes 5b0e55c4b2 feat: implement Change resource with CRUD functionality and migration
update image tags to v0.0.8 in build scripts and docker-compose files
2026-02-17 16:07:22 +00:00

19 lines
414 B
PHP

<?php
namespace App\Filament\Resources\Changes\Pages;
use App\Filament\Resources\Changes\ChangeResource;
use Filament\Actions\CreateAction;
use Filament\Resources\Pages\ListRecords;
class ListChanges extends ListRecords
{
protected static string $resource = ChangeResource::class;
protected function getHeaderActions(): array
{
return [
CreateAction::make(),
];
}
}