57 lines
1.7 KiB
PHP
57 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Users\Tables;
|
|
|
|
use Filament\Actions\BulkActionGroup;
|
|
use Filament\Actions\DeleteBulkAction;
|
|
use Filament\Actions\EditAction;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Filters\SelectFilter;
|
|
use Filament\Tables\Table;
|
|
|
|
class UsersTable
|
|
{
|
|
public static function configure(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
TextColumn::make('name')
|
|
->label('نام')
|
|
->searchable()
|
|
->sortable(),
|
|
TextColumn::make('email')
|
|
->label('ایمیل')
|
|
->searchable()
|
|
->sortable(),
|
|
TextColumn::make('mobile')
|
|
->label('شماره موبایل')
|
|
->searchable()
|
|
->sortable(),
|
|
TextColumn::make('roles.name')
|
|
->label('نقشها')
|
|
->badge()
|
|
->searchable(),
|
|
TextColumn::make('created_at')
|
|
->label('تاریخ ایجاد')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
])
|
|
->filters([
|
|
SelectFilter::make('roles')
|
|
->label('نقش')
|
|
->relationship('roles', 'name')
|
|
->searchable()
|
|
->preload(),
|
|
])
|
|
->recordActions([
|
|
EditAction::make(),
|
|
])
|
|
->toolbarActions([
|
|
BulkActionGroup::make([
|
|
DeleteBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
}
|