Files
hr/app/Filament/Resources/Gifts/Schemas/GiftInfolist.php

44 lines
1.5 KiB
PHP

<?php
namespace App\Filament\Resources\Gifts\Schemas;
use App\Models\Gift;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;
class GiftInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextEntry::make('employee.id')
->label(__('hr.fields.employee')),
TextEntry::make('gift_date')
->label(__('hr.fields.gift_date'))
->date(),
TextEntry::make('gift_name')
->label(__('hr.fields.gift_name')),
TextEntry::make('value')
->label(__('hr.fields.value'))
->numeric(),
TextEntry::make('reason')
->label(__('hr.fields.reason'))
->placeholder('-')
->columnSpanFull(),
TextEntry::make('created_at')
->label(__('hr.fields.created_at'))
->dateTime()
->placeholder('-'),
TextEntry::make('updated_at')
->label(__('hr.fields.updated_at'))
->dateTime()
->placeholder('-'),
TextEntry::make('deleted_at')
->label(__('hr.fields.deleted_at'))
->dateTime()
->visible(fn (Gift $record): bool => $record->trashed()),
]);
}
}