true, ]; protected $indexColumns = [ 'image' => [ 'thumb' => true, // image column 'variant' => [ 'role' => 'document', 'crop' => 'default', ], ], 'title' => [ // field column 'title' => 'Title', 'field' => 'title', ], 'description' => [ 'title' => 'Beschreibung', 'field' => 'description', 'sort' => true, // column is sortable 'visible' => true, // will be available from the columns settings dropdown ] ]; public function getForm(TwillModelContract $model): Form { $form = parent::getForm($model); $form->add( Radios::make() ->name('sectors') ->inline() ->border() ->options( Options::make([ Option::make('promotions', 'Aktionen'), Option::make('news', 'Neuigkeiten'), Option::make('catalogues', 'Kataloge') ]) ) ); $form->add( Medias::make()->name('document')->label('Coverbild') ); $form->add( Input::make()->name('description')->label('Beschreibung') ); $form->add( Input::make()->name('title')->label('Title') ); return $form; } }