90 lines
2.7 KiB
PHP
90 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Clusters\Loans\LoanOrders\Tables;
|
|
|
|
use Filament\Actions\BulkActionGroup;
|
|
use Filament\Actions\DeleteBulkAction;
|
|
use Filament\Actions\EditAction;
|
|
use Filament\Actions\ForceDeleteBulkAction;
|
|
use Filament\Actions\RestoreBulkAction;
|
|
use Filament\Actions\ViewAction;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Filters\TrashedFilter;
|
|
use Filament\Tables\Table;
|
|
|
|
class LoanOrdersTable
|
|
{
|
|
public static function configure(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
TextColumn::make('id')
|
|
->label('ID')
|
|
->sortable(),
|
|
|
|
TextColumn::make('loanType.name')
|
|
->label('Тип кредита')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
TextColumn::make('region')
|
|
->label('Регион')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
TextColumn::make('branch.name')
|
|
->label('Филиал')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
TextColumn::make('customer_name')
|
|
->label('Имя клиента')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
TextColumn::make('customer_surname')
|
|
->label('Фамилия клиента')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
TextColumn::make('phone')
|
|
->label('Телефон')
|
|
->searchable(),
|
|
|
|
TextColumn::make('status')
|
|
->label('Статус')
|
|
->sortable()
|
|
->searchable(),
|
|
|
|
TextColumn::make('created_at')
|
|
->label('Дата создания')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(),
|
|
|
|
TextColumn::make('updated_at')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
TextColumn::make('deleted_at')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
])
|
|
->filters([
|
|
TrashedFilter::make(),
|
|
])
|
|
->recordActions([
|
|
ViewAction::make(),
|
|
EditAction::make(),
|
|
])
|
|
->toolbarActions([
|
|
BulkActionGroup::make([
|
|
DeleteBulkAction::make(),
|
|
ForceDeleteBulkAction::make(),
|
|
RestoreBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
}
|