Tables\Columns\TextColumn::make('status')
->label('Status')
->badge()
->color(fn(string $state): string => match ($state) {
'accepted' => 'gray',
'finished' => 'success',
'cancelled' => 'warning',
'failed' => 'danger',
})
->sortable(),
Tables\Columns\TextColumn::make('status')
->label('Status')
->badge()
->color(fn(string $state): string => match ($state) {
'accepted' => 'gray',
'finished' => 'success',
'cancelled' => 'warning',
'failed' => 'danger',
})
->sortable(),