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.

CreateCurrency.php 383B

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