dcasia / nova-inline-morph-to

A Laravel Nova field for displaying morphTo relationship inline.
MIT License
33 stars 15 forks source link

Update InlineMorphTo.php #20

Closed cord closed 1 year ago

cord commented 4 years ago

Allow setting label

milewski commented 4 years ago

Not sure if I understood the need of this PR, you can already set a custom label by specifing the keys when defining the morphClasses

Something like:

->types([
    "Custom Label 1" => \App\Nova\Video::class,
    "Custom Label 2" =>  \App\Nova\Image::class,
    "Custom Label 3" => \App\Nova\Text::class,
    "Custom Label 4" => \App\Nova\Gallery::class,
])