63 lines
2.5 KiB
PHP
63 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Wallets\RelationManagers;
|
|
|
|
use App\Enums\WalletTransactionType;
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Filters\SelectFilter;
|
|
use Filament\Tables\Table;
|
|
|
|
class TransactionsRelationManager extends RelationManager
|
|
{
|
|
protected static string $relationship = 'transactions';
|
|
|
|
protected static ?string $title = 'تراکنشها';
|
|
|
|
protected static ?string $modelLabel = 'تراکنش';
|
|
|
|
protected static ?string $pluralModelLabel = 'تراکنشها';
|
|
|
|
public function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
TextColumn::make('type')
|
|
->label('نوع')
|
|
->badge()
|
|
->formatStateUsing(fn (WalletTransactionType $state): string => $state->label())
|
|
->color(fn (WalletTransactionType $state): string => $state === WalletTransactionType::Credit ? 'success' : 'danger'),
|
|
TextColumn::make('amount')
|
|
->label('مبلغ')
|
|
->formatStateUsing(fn (int $state): string => number_format($state).' تومان'),
|
|
TextColumn::make('balance_before')
|
|
->label('قبل')
|
|
->formatStateUsing(fn (int $state): string => number_format($state)),
|
|
TextColumn::make('balance_after')
|
|
->label('بعد')
|
|
->formatStateUsing(fn (int $state): string => number_format($state)),
|
|
TextColumn::make('description')
|
|
->label('توضیحات')
|
|
->limit(40),
|
|
TextColumn::make('creator.name')
|
|
->label('ثبتکننده')
|
|
->placeholder('سیستم'),
|
|
TextColumn::make('created_at')
|
|
->label('تاریخ')
|
|
->dateTime()
|
|
->sortable(),
|
|
])
|
|
->defaultSort('created_at', 'desc')
|
|
->filters([
|
|
SelectFilter::make('type')
|
|
->label('نوع')
|
|
->options([
|
|
WalletTransactionType::Credit->value => WalletTransactionType::Credit->label(),
|
|
WalletTransactionType::Debit->value => WalletTransactionType::Debit->label(),
|
|
]),
|
|
])
|
|
->recordActions([])
|
|
->toolbarActions([]);
|
|
}
|
|
}
|