Update Submissions and add fields

This commit is contained in:
2026-06-10 11:04:26 +02:00
parent 1d8ea70b72
commit 4f9f6c63b3
64 changed files with 2278 additions and 174 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Filament\Resources\Systems\Pages;
use App\Filament\Resources\Systems\SystemResource;
use Filament\Actions\CreateAction;
use Filament\Resources\Pages\ListRecords;
class ListSystems extends ListRecords
{
protected static string $resource = SystemResource::class;
protected function getHeaderActions(): array
{
return [
CreateAction::make(),
];
}
}