Select::make('country_id')
->relationship(name: 'country', titleAttribute: 'country_name')
->createOptionForm([
Grid::make(2)
->schema([
TextInput::make('country_code')
->label('Код')
->required()
->maxLength(255),
TextInput::make('country_name')
->label('Име')
->required()
->maxLength(255),
]),
])
->label('Држава')
->native(false)
->searchable()
->preload(),
Select::make('country_id')
->relationship(name: 'country', titleAttribute: 'country_name')
->createOptionForm([
Grid::make(2)
->schema([
TextInput::make('country_code')
->label('Код')
->required()
->maxLength(255),
TextInput::make('country_name')
->label('Име')
->required()
->maxLength(255),
]),
])
->label('Држава')
->native(false)
->searchable()
->preload(),