Fields

MorphMany

Inherits from HasMany.

  • has the same capabilities

A relationship field in Laravel of type morphMany

The same as MoonShine\Laravel\Fields\Relationships\HasMany, but for morphMany relationships in MoonShine\Laravel\Fields\Relationships\MorphMany

The formatted parameter is not used in the MorphMany field!

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