35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Departments\Schemas;
|
|
|
|
use App\Models\Department;
|
|
use Filament\Infolists\Components\IconEntry;
|
|
use Filament\Infolists\Components\TextEntry;
|
|
use Filament\Schemas\Schema;
|
|
|
|
class DepartmentInfolist
|
|
{
|
|
public static function configure(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
TextEntry::make('name'),
|
|
TextEntry::make('code'),
|
|
TextEntry::make('description')
|
|
->placeholder('-')
|
|
->columnSpanFull(),
|
|
IconEntry::make('is_active')
|
|
->boolean(),
|
|
TextEntry::make('created_at')
|
|
->dateTime()
|
|
->placeholder('-'),
|
|
TextEntry::make('updated_at')
|
|
->dateTime()
|
|
->placeholder('-'),
|
|
TextEntry::make('deleted_at')
|
|
->dateTime()
|
|
->visible(fn (Department $record): bool => $record->trashed()),
|
|
]);
|
|
}
|
|
}
|