d2d.emegrendeles.hu/app/Filament/Resources/ProfitCenterSupplierSchedules/Pages/ListProfitCenterSupplierSchedules.php
2026-04-15 06:42:55 +02:00

20 lines
524 B
PHP

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