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'),