Files
hr/app/Filament/Resources/Vacations/Schemas/VacationInfolist.php
2026-07-30 17:24:40 +05:00

53 lines
1.7 KiB
PHP

<?php
namespace App\Filament\Resources\Vacations\Schemas;
use App\Models\Vacation;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;
class VacationInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextEntry::make('employee.id')
->label('Employee'),
TextEntry::make('type')
->badge(),
TextEntry::make('start_date')
->date(),
TextEntry::make('end_date')
->date(),
TextEntry::make('return_date')
->date()
->placeholder('-'),
TextEntry::make('days')
->numeric(),
TextEntry::make('status')
->badge(),
TextEntry::make('reason')
->placeholder('-')
->columnSpanFull(),
TextEntry::make('attachment_path')
->placeholder('-'),
TextEntry::make('approved_by')
->numeric()
->placeholder('-'),
TextEntry::make('approved_at')
->dateTime()
->placeholder('-'),
TextEntry::make('created_at')
->dateTime()
->placeholder('-'),
TextEntry::make('updated_at')
->dateTime()
->placeholder('-'),
TextEntry::make('deleted_at')
->dateTime()
->visible(fn (Vacation $record): bool => $record->trashed()),
]);
}
}