123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <?php
-
- namespace App\Filament\Company\Resources\Banking;
-
- use App\Enums\Accounting\AccountCategory;
- use App\Enums\Banking\BankAccountType;
- use App\Filament\Company\Resources\Banking\AccountResource\Pages;
- use App\Filament\Forms\Components\CreateCurrencySelect;
- use App\Models\Accounting\AccountSubtype;
- use App\Models\Banking\BankAccount;
- use Filament\Forms;
- use Filament\Forms\Form;
- use Filament\Resources\Resource;
- use Filament\Support\Enums\Alignment;
- use Filament\Support\Enums\FontWeight;
- use Filament\Tables;
- use Filament\Tables\Table;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Support\Collection;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Validation\Rules\Unique;
- use Wallo\FilamentSelectify\Components\ToggleButton;
-
- class AccountResource extends Resource
- {
- protected static ?string $model = BankAccount::class;
-
- protected static ?string $modelLabel = 'account';
-
- public static function getModelLabel(): string
- {
- $modelLabel = static::$modelLabel;
-
- return translate($modelLabel);
- }
-
- public static function form(Form $form): Form
- {
- return $form
- ->schema([
- Forms\Components\Section::make('Account Information')
- ->schema([
- Forms\Components\Select::make('type')
- ->options(BankAccountType::class)
- ->localizeLabel()
- ->searchable()
- ->columnSpan(1)
- ->disabledOn('edit')
- ->default(BankAccountType::DEFAULT)
- ->live()
- ->afterStateUpdated(static function (Forms\Set $set, $state, ?BankAccount $bankAccount, string $operation) {
- if ($operation === 'create') {
- $set('account.subtype_id', null);
- } elseif ($operation === 'edit' && $bankAccount !== null) {
- if ($state !== $bankAccount->type->value) {
- $set('account.subtype_id', null);
- } else {
- $set('account.subtype_id', $bankAccount->account->subtype_id);
- }
- }
- })
- ->required(),
- Forms\Components\Group::make()
- ->columnStart([
- 'default' => 1,
- 'lg' => 2,
- ])
- ->relationship('account')
- ->schema([
- Forms\Components\Select::make('subtype_id')
- ->options(static fn (Forms\Get $get) => static::groupSubtypesBySubtypeType(BankAccountType::parse($get('data.type', true))))
- ->disabledOn('edit')
- ->localizeLabel()
- ->searchable()
- ->live()
- ->required(),
- ]),
- Forms\Components\Group::make()
- ->relationship('account')
- ->columns()
- ->columnSpanFull()
- ->schema([
- Forms\Components\TextInput::make('name')
- ->maxLength(100)
- ->localizeLabel()
- ->required(),
- CreateCurrencySelect::make('currency_code')
- ->disabledOn('edit'),
- ]),
- Forms\Components\Group::make()
- ->columns()
- ->columnSpanFull()
- ->schema([
- Forms\Components\TextInput::make('number')
- ->localizeLabel('Account number')
- ->unique(ignoreRecord: true, modifyRuleUsing: static function (Unique $rule, $state) {
- $companyId = Auth::user()->currentCompany->id;
-
- return $rule->where('company_id', $companyId)->where('number', $state);
- })
- ->maxLength(20)
- ->validationAttribute('account number'),
- ToggleButton::make('enabled')
- ->localizeLabel('Default'),
- ]),
- ])->columns(),
- ]);
- }
-
- public static function table(Table $table): Table
- {
- return $table
- ->modifyQueryUsing(function (Builder $query) {
- $query->with([
- 'account',
- 'account.subtype',
- ]);
- })
- ->columns([
- Tables\Columns\TextColumn::make('account.name')
- ->localizeLabel('Account')
- ->searchable()
- ->weight(FontWeight::Medium)
- ->icon(static fn (BankAccount $record) => $record->isEnabled() ? 'heroicon-o-lock-closed' : null)
- ->tooltip(static fn (BankAccount $record) => $record->isEnabled() ? 'Default Account' : null)
- ->iconPosition('after')
- ->description(static fn (BankAccount $record) => $record->mask ?? null),
- Tables\Columns\TextColumn::make('account.subtype.name')
- ->localizeLabel('Subtype')
- ->sortable()
- ->toggleable(),
- Tables\Columns\TextColumn::make('account.ending_balance')
- ->localizeLabel('Ending balance')
- ->state(static fn (BankAccount $record) => $record->account->ending_balance->convert()->formatWithCode())
- ->toggleable()
- ->alignment(Alignment::End),
- ])
- ->filters([
- //
- ])
- ->actions([
- Tables\Actions\EditAction::make(),
- ])
- ->bulkActions([
- Tables\Actions\BulkActionGroup::make([
- Tables\Actions\DeleteBulkAction::make()
- ->requiresConfirmation()
- ->modalDescription('Are you sure you want to delete the selected accounts? All transactions associated with the accounts will be deleted as well.')
- ->hidden(function (Table $table) {
- return $table->getAllSelectableRecordsCount() === 0;
- }),
- ]),
- ])
- ->checkIfRecordIsSelectableUsing(static function (BankAccount $record) {
- return $record->isDisabled();
- });
- }
-
- public static function getPages(): array
- {
- return [
- 'index' => Pages\ListAccounts::route('/'),
- 'create' => Pages\CreateAccount::route('/create'),
- 'edit' => Pages\EditAccount::route('/{record}/edit'),
- ];
- }
-
- public static function groupSubtypesBySubtypeType(BankAccountType $bankAccountType): array
- {
- $category = match ($bankAccountType) {
- BankAccountType::Depository, BankAccountType::Investment => AccountCategory::Asset,
- BankAccountType::Credit, BankAccountType::Loan => AccountCategory::Liability,
- default => null,
- };
-
- if ($category === null) {
- return [];
- }
-
- $subtypes = AccountSubtype::where('category', $category)->get();
-
- return $subtypes->groupBy(fn (AccountSubtype $subtype) => $subtype->type->getLabel())
- ->map(fn (Collection $subtypes, string $type) => $subtypes->mapWithKeys(static fn (AccountSubtype $subtype) => [$subtype->id => $subtype->name]))
- ->toArray();
- }
- }
|