Fields

MorphOne

Inherits from HasOne.

  • has the same capabilities

Relationship field in Laravel of type HasOne.

The same as MoonShine\Laravel\Fields\Relationships\HasOne, but for MorphOne relationships MoonShine\Laravel\Fields\Relationships\MorphOne.

use MoonShine\Laravel\Fields\Relationships\MorphOne;
 
//...
 
protected function fields(): iterable
{
return [
MorphOne::make('Profile', 'profile')
];
}
 
//...