Open
Description
Is there an easier way of me accessing the Store from within my custom readingRelatedx method without overriding the showRelated method in the controller and passing it in like this;
I need to override the data that is returned.
if (method_exists($this, $hook = 'readingRelated' . Str::classify($fieldName))) {
$response = $this->{$hook}($model, $request, $store);
}