101 lines
3.2 KiB
PHP
101 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\Employees\RelationManagers;
|
|
|
|
use App\Enums\BonusType;
|
|
use Filament\Actions\BulkActionGroup;
|
|
use Filament\Actions\CreateAction;
|
|
use Filament\Actions\DeleteAction;
|
|
use Filament\Actions\DeleteBulkAction;
|
|
use Filament\Actions\EditAction;
|
|
use Filament\Actions\ForceDeleteBulkAction;
|
|
use Filament\Actions\RestoreBulkAction;
|
|
use Filament\Forms\Components\DatePicker;
|
|
use Filament\Forms\Components\Select;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Forms\Components\Textarea;
|
|
use Filament\Resources\RelationManagers\RelationManager;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Filters\SelectFilter;
|
|
use Filament\Tables\Filters\TrashedFilter;
|
|
use Filament\Tables\Table;
|
|
|
|
class BonusesRelationManager extends RelationManager
|
|
{
|
|
protected static string $relationship = 'bonuses';
|
|
|
|
public static function getTitle(\Illuminate\Database\Eloquent\Model $ownerRecord, string $pageClass): string
|
|
{
|
|
return __("hr.relation_managers.bonuses");
|
|
}
|
|
|
|
public function form(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
DatePicker::make('bonus_date')
|
|
->required()
|
|
->default(now()),
|
|
Select::make('bonus_type')
|
|
->options(BonusType::class)
|
|
->required()
|
|
->native(false),
|
|
TextInput::make('amount')
|
|
->required()
|
|
->numeric()
|
|
->prefix('TMT')
|
|
->minValue(0)
|
|
->step(0.01),
|
|
Textarea::make('reason')
|
|
->rows(3)
|
|
->columnSpanFull(),
|
|
]);
|
|
}
|
|
|
|
public function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->recordTitleAttribute('bonus_date')
|
|
->columns([
|
|
TextColumn::make('bonus_date')
|
|
->date()
|
|
->sortable(),
|
|
TextColumn::make('bonus_type')
|
|
->label(__('hr.fields.type'))
|
|
->badge()
|
|
->color(fn (BonusType $state): string => $state->color())
|
|
->formatStateUsing(fn (BonusType $state): string => $state->label())
|
|
->sortable(),
|
|
TextColumn::make('amount')
|
|
->money('TMT')
|
|
->sortable(),
|
|
TextColumn::make('reason')
|
|
->limit(40)
|
|
->toggleable(),
|
|
])
|
|
->filters([
|
|
SelectFilter::make('bonus_type')
|
|
->label(__('hr.fields.type'))
|
|
->options(BonusType::class),
|
|
TrashedFilter::make(),
|
|
])
|
|
->headerActions([
|
|
CreateAction::make(),
|
|
])
|
|
->recordActions([
|
|
EditAction::make(),
|
|
DeleteAction::make(),
|
|
])
|
|
->toolbarActions([
|
|
BulkActionGroup::make([
|
|
DeleteBulkAction::make(),
|
|
ForceDeleteBulkAction::make(),
|
|
RestoreBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
}
|