| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | 
							- <?php
 - 
 - namespace App\Filament\Company\Pages;
 - 
 - use App\Enums\Setting\EntityType;
 - use App\Models\Company;
 - use App\Models\Locale\Country;
 - use App\Models\Setting\Localization;
 - use App\Services\CompanyDefaultService;
 - use App\Utilities\Currency\CurrencyAccessor;
 - use Filament\Forms\Components\Select;
 - use Filament\Forms\Components\TextInput;
 - use Filament\Forms\Form;
 - use Illuminate\Database\Eloquent\Model;
 - use Illuminate\Support\Facades\Auth;
 - use Illuminate\Support\Facades\DB;
 - use Illuminate\Support\Facades\Gate;
 - use Wallo\FilamentCompanies\Events\AddingCompany;
 - use Wallo\FilamentCompanies\FilamentCompanies;
 - use Wallo\FilamentCompanies\Pages\Company\CreateCompany as FilamentCreateCompany;
 - 
 - class CreateCompany extends FilamentCreateCompany
 - {
 -     public function form(Form $form): Form
 -     {
 -         return $form
 -             ->schema([
 -                 TextInput::make('name')
 -                     ->label(__('filament-companies::default.labels.company_name'))
 -                     ->autofocus()
 -                     ->maxLength(255)
 -                     ->softRequired(),
 -                 TextInput::make('profile.email')
 -                     ->label('Company Email')
 -                     ->email()
 -                     ->softRequired(),
 -                 Select::make('profile.entity_type')
 -                     ->label('Entity Type')
 -                     ->options(EntityType::class)
 -                     ->softRequired(),
 -                 Select::make('profile.country')
 -                     ->label('Country')
 -                     ->live()
 -                     ->searchable()
 -                     ->options(Country::getAvailableCountryOptions())
 -                     ->softRequired(),
 -                 Select::make('locale.language')
 -                     ->label('Language')
 -                     ->searchable()
 -                     ->options(Localization::getAllLanguages())
 -                     ->softRequired(),
 -                 Select::make('currencies.code')
 -                     ->label('Currency')
 -                     ->searchable()
 -                     ->options(CurrencyAccessor::getAllCurrencyOptions())
 -                     ->optionsLimit(5)
 -                     ->softRequired(),
 -             ])
 -             ->model(FilamentCompanies::companyModel())
 -             ->statePath('data');
 -     }
 - 
 -     protected function handleRegistration(array $data): Model
 -     {
 -         $user = Auth::user();
 - 
 -         Gate::forUser($user)->authorize('create', FilamentCompanies::newCompanyModel());
 - 
 -         AddingCompany::dispatch($user);
 - 
 -         $personalCompany = $user?->personalCompany() === null;
 - 
 -         return DB::transaction(function () use ($user, $data, $personalCompany) {
 -             /** @var Company $company */
 -             $company = $user?->ownedCompanies()->create([
 -                 'name' => $data['name'],
 -                 'personal_company' => $personalCompany,
 -             ]);
 - 
 -             $company->profile()->create([
 -                 'email' => $data['profile']['email'],
 -                 'entity_type' => $data['profile']['entity_type'],
 -                 'country' => $data['profile']['country'],
 -             ]);
 - 
 -             $user?->switchCompany($company);
 - 
 -             $companyDefaultService = app()->make(CompanyDefaultService::class);
 -             $user = $company->owner ?? $user;
 -             $companyDefaultService->createCompanyDefaults($company, $user, $data['currencies']['code'], $data['profile']['country'], $data['locale']['language']);
 - 
 -             $this->companyCreated($data['name']);
 - 
 -             return $company;
 -         });
 -     }
 - }
 
 
  |