Files
hr/app/Filament/Resources/SickLeaves/Schemas/SickLeaveInfolist.php
2026-07-31 18:08:08 +05:00

42 lines
1.3 KiB
PHP

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