77 lines
2.4 KiB
PHP
77 lines
2.4 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filament\Resources\MemberGroups\RelationManagers;
|
||
|
|
|
||
|
|
use App\Models\Member;
|
||
|
|
use Filament\Actions\AssociateAction;
|
||
|
|
use Filament\Actions\BulkActionGroup;
|
||
|
|
use Filament\Actions\CreateAction;
|
||
|
|
use Filament\Actions\DeleteAction;
|
||
|
|
use Filament\Actions\DeleteBulkAction;
|
||
|
|
use Filament\Actions\DissociateAction;
|
||
|
|
use Filament\Actions\DissociateBulkAction;
|
||
|
|
use Filament\Actions\EditAction;
|
||
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
||
|
|
use Filament\Schemas\Schema;
|
||
|
|
use Filament\Tables\Columns\TextColumn;
|
||
|
|
use Filament\Tables\Table;
|
||
|
|
|
||
|
|
class MembersRelationManager extends RelationManager
|
||
|
|
{
|
||
|
|
protected static string $relationship = 'members';
|
||
|
|
|
||
|
|
protected static ?string $title = 'Adhérents du groupe';
|
||
|
|
|
||
|
|
public function form(Schema $schema): Schema
|
||
|
|
{
|
||
|
|
return $schema
|
||
|
|
->components([
|
||
|
|
//
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
public function table(Table $table): Table
|
||
|
|
{
|
||
|
|
return $table
|
||
|
|
->recordTitleAttribute('name')
|
||
|
|
->columns([
|
||
|
|
TextColumn::make('lastname')
|
||
|
|
->label(Member::getAttributeLabel('lastname'))
|
||
|
|
->searchable(),
|
||
|
|
TextColumn::make('firstname')
|
||
|
|
->label(Member::getAttributeLabel('firstname'))
|
||
|
|
->searchable(),
|
||
|
|
TextColumn::make('status')
|
||
|
|
->label(Member::getAttributeLabel('status'))
|
||
|
|
->formatStateUsing(fn (string $state) => Member::getAttributeLabel($state))
|
||
|
|
->badge()
|
||
|
|
->color(fn (string $state): string => match ($state) {
|
||
|
|
'draft' => 'gray',
|
||
|
|
'pending' => 'warning',
|
||
|
|
'valid' => 'success',
|
||
|
|
'cancelled' => 'danger',
|
||
|
|
'excluded' => 'black',
|
||
|
|
}),
|
||
|
|
|
||
|
|
])
|
||
|
|
->filters([
|
||
|
|
//
|
||
|
|
])
|
||
|
|
->headerActions([
|
||
|
|
CreateAction::make(),
|
||
|
|
AssociateAction::make(),
|
||
|
|
])
|
||
|
|
->recordActions([
|
||
|
|
EditAction::make(),
|
||
|
|
DissociateAction::make(),
|
||
|
|
DeleteAction::make(),
|
||
|
|
])
|
||
|
|
->toolbarActions([
|
||
|
|
BulkActionGroup::make([
|
||
|
|
DissociateBulkAction::make(),
|
||
|
|
DeleteBulkAction::make(),
|
||
|
|
]),
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
}
|