You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EditBudget.php 483B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Filament\Company\Resources\Accounting\BudgetResource\Pages;
  3. use App\Filament\Company\Resources\Accounting\BudgetResource;
  4. use Filament\Actions;
  5. use Filament\Resources\Pages\EditRecord;
  6. class EditBudget extends EditRecord
  7. {
  8. protected static string $resource = BudgetResource::class;
  9. protected function getHeaderActions(): array
  10. {
  11. return [
  12. Actions\ViewAction::make(),
  13. Actions\DeleteAction::make(),
  14. ];
  15. }
  16. }