d2d.emegrendeles.hu/app/Filament/Resources/ProfitCenterSupplierSchedules/Pages/EditProfitCenterSupplierSchedule.php
2026-04-19 21:23:18 +02:00

31 lines
826 B
PHP

<?php
namespace App\Filament\Resources\ProfitCenterSupplierSchedules\Pages;
use App\Filament\Resources\ProfitCenterSupplierSchedules\ProfitCenterSupplierScheduleResource;
use Filament\Actions\DeleteAction;
use Filament\Actions\ForceDeleteAction;
use Filament\Actions\RestoreAction;
use Filament\Resources\Pages\EditRecord;
class EditProfitCenterSupplierSchedule extends EditRecord
{
protected static string $resource = ProfitCenterSupplierScheduleResource::class;
protected function getHeaderActions(): array
{
return [
DeleteAction::make(),
ForceDeleteAction::make(),
RestoreAction::make(),
];
}
protected function getFooterWidgets(): array
{
return [
\App\Filament\Widgets\DeliveryCalendarWidget::class,
];
}
}