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.

EditAdjustment.php 424B

123456789101112131415161718
  1. <?php
  2. namespace App\Filament\Company\Clusters\Settings\Resources\AdjustmentResource\Pages;
  3. use App\Filament\Company\Clusters\Settings\Resources\AdjustmentResource;
  4. use Filament\Resources\Pages\EditRecord;
  5. class EditAdjustment extends EditRecord
  6. {
  7. protected static string $resource = AdjustmentResource::class;
  8. protected function getHeaderActions(): array
  9. {
  10. return [
  11. //
  12. ];
  13. }
  14. }