Files
TLA/app/Filament/Resources/TlaSuggestions/Schemas/TlaSuggestionInfolist.php
T
Belupeti 73b0f6527a
Build / Build-image (push) Successful in 1m9s
fix some stuff
2026-08-21 10:47:26 +02:00

33 lines
955 B
PHP

<?php
namespace App\Filament\Resources\TlaSuggestions\Schemas;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;
class TlaSuggestionInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextEntry::make('acronym'),
TextEntry::make('hint')
->placeholder('-'),
TextEntry::make('language')
->badge(),
TextEntry::make('context')
->placeholder('-')
->columnSpanFull(),
TextEntry::make('submitter')
->placeholder('-'),
TextEntry::make('created_at')
->dateTime()
->placeholder('-'),
TextEntry::make('updated_at')
->dateTime()
->placeholder('-'),
]);
}
}