Marven Thieme
Marven Thieme
@jankal Thank you so much for pointing out, that I need to place my parameters in an array item with ['parameters' => I was getting nuts trying to understand, why...
Works for me. I use it like this: `AttachMany::make(__('Recipients'), 'recipients', User::class)` And the relatable query looks like this: `public static function relatableUsers(NovaRequest $request, $query): Builder { return $query->nonAdmin(); }`
Hi @markhuot thanks for your hard work! In my Pest.php file I have set up a method which sets the current site by a handle. ``` function setSiteByHandle(string $siteHandle): void...
Works for me as follows: ```