Я бы действительно сделал через middleware типо AttachConfigToResponse
public function handle(Request $request, Closure $next): Response
{
$response = $next($request);
$json = $response->getData();
$json['config'] = ...;
$response->setData($json);
return $response;
}