kirschbaum-development / nova-inline-relationship

A package to present relationships as inline properties in Nova.
MIT License
196 stars 84 forks source link

hasMany Inline field validation #97

Open abdulSF opened 3 years ago

abdulSF commented 3 years ago

On the following code. I am using hasMany with inline relation. But when I add validation on fields in "BundlePublications". It is not working.

// Bundle Resource HasMany::make('Bundle Product', 'BundlePublications', \App\Nova\BundlePublication::class) ->inline(),

//BundlePublications Resource Number::make('Quantity', 'qty')->rules('required'),