HasManyThrough

Extends HasMany * has the same features

The HasManyThrough field is designed to work with the relation of the same name in Laravel, inherits from the HasMany field and includes all its methods.

use MoonShine\Fields\Relationships\HasManyThrough;
 
//...
 
public function fields(): array
{
return [
HasManyThrough::make('Deployments', 'deployments', resource: new DeploymentResource())
];
}
 
//...