您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CreateAccount.php 558B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Filament\Company\Resources\Banking\AccountResource\Pages;
  3. use App\Filament\Company\Resources\Banking\AccountResource;
  4. use Filament\Resources\Pages\CreateRecord;
  5. class CreateAccount extends CreateRecord
  6. {
  7. protected static string $resource = AccountResource::class;
  8. protected function getRedirectUrl(): string
  9. {
  10. return $this->previousUrl;
  11. }
  12. protected function mutateFormDataBeforeCreate(array $data): array
  13. {
  14. $data['enabled'] = (bool) ($data['enabled'] ?? false);
  15. return $data;
  16. }
  17. }