You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ToMany::make('roles')
// meta on the relationship object
// $context->model is still the parent model
->meta([
Meta::make('foo')->get('bar'),
])
// meta on linkage resource identifier objects
// $context->model is the related model
->linkageMeta([
Meta::make('assignedAt')->get(fn($role) => $role->pivot->created_at),
]);
The text was updated successfully, but these errors were encountered:
eg. pivot timestamps/data
The text was updated successfully, but these errors were encountered: