95 lines
3.1 KiB
PHP
95 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Clusters\Cards\CardOrders\Tables;
|
|
|
|
use App\Modules\OrderStatus\Repositories\OrderStatusRepository;
|
|
use App\Modules\Region\Repositories\RegionRepository;
|
|
use Filament\Actions\BulkActionGroup;
|
|
use Filament\Actions\DeleteBulkAction;
|
|
use Filament\Actions\EditAction;
|
|
use Filament\Actions\ForceDeleteBulkAction;
|
|
use Filament\Actions\RestoreBulkAction;
|
|
use Filament\Tables\Columns\IconColumn;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Filters\TrashedFilter;
|
|
use Filament\Tables\Table;
|
|
|
|
class CardOrdersTable
|
|
{
|
|
public static function configure(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
TextColumn::make('unique_id')
|
|
->label(__('ID'))
|
|
->searchable(),
|
|
|
|
TextColumn::make('cardState.name')
|
|
->label(__('Reason'))
|
|
->searchable(),
|
|
|
|
TextColumn::make('cardType.name')
|
|
->label(__('Card type'))
|
|
->searchable(),
|
|
|
|
TextColumn::make('created_at')
|
|
->label(__('Created At'))
|
|
->dateTime()
|
|
->sortable(),
|
|
|
|
TextColumn::make('region')
|
|
->label(__('Region'))
|
|
->formatStateUsing(fn (string $state): string => RegionRepository::label($state))
|
|
->searchable(),
|
|
|
|
TextColumn::make('branch.name')
|
|
->label(__('Branch'))
|
|
->searchable(),
|
|
|
|
TextColumn::make('customer_name')
|
|
->label(__('Name'))
|
|
->searchable(),
|
|
|
|
TextColumn::make('customer_surname')
|
|
->label(__('Surname'))
|
|
->searchable(),
|
|
|
|
IconColumn::make('paid')
|
|
->label(__('Paid'))
|
|
->boolean(),
|
|
|
|
TextColumn::make('phone')
|
|
->label(__('Phone'))
|
|
->searchable(),
|
|
|
|
TextColumn::make('status')
|
|
->formatStateUsing(fn (string $state) => OrderStatusRepository::statusFormatted($state))
|
|
->searchable(),
|
|
|
|
TextColumn::make('updated_at')
|
|
->label(__('Updated At'))
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
TextColumn::make('deleted_at')
|
|
->label(__('Deleted At'))
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
])
|
|
->filters([
|
|
TrashedFilter::make(),
|
|
])
|
|
->recordActions([
|
|
EditAction::make(),
|
|
])
|
|
->toolbarActions([
|
|
BulkActionGroup::make([
|
|
DeleteBulkAction::make(),
|
|
ForceDeleteBulkAction::make(),
|
|
RestoreBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
}
|