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.

CreateTax.php 412B

12345678910111213141516
  1. <?php
  2. namespace App\Filament\Company\Clusters\Settings\Resources\TaxResource\Pages;
  3. use App\Filament\Company\Clusters\Settings\Resources\TaxResource;
  4. use Filament\Resources\Pages\CreateRecord;
  5. class CreateTax extends CreateRecord
  6. {
  7. protected static string $resource = TaxResource::class;
  8. protected function getRedirectUrl(): string
  9. {
  10. return $this->getResource()::getUrl('index');
  11. }
  12. }