Closed LorenzoSapora closed 4 years ago
I am attempting to use the spatie medialibrary callable, but failing. What am I doing wrong?
// config/nova-notes-field.php return [ 'get_avatar_url' => auth()->user()->getFirstMediaUrl('avatar') ];
That's not a callable. Try this:
return [ 'get_avatar_url' => fn ($user) => $user->getFirstMediaUrl('avatar'), ];
Ack. I can't believe I missed that. Thanks
I am attempting to use the spatie medialibrary callable, but failing. What am I doing wrong?