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.

CreateAdjustment.php 391B

1234567891011121314
  1. <?php
  2. namespace App\Filament\Company\Clusters\Settings\Resources\AdjustmentResource\Pages;
  3. use App\Concerns\HandlePageRedirect;
  4. use App\Filament\Company\Clusters\Settings\Resources\AdjustmentResource;
  5. use Filament\Resources\Pages\CreateRecord;
  6. class CreateAdjustment extends CreateRecord
  7. {
  8. use HandlePageRedirect;
  9. protected static string $resource = AdjustmentResource::class;
  10. }