response = $response; } /** * Invoke the controller method. * * @param array $args * @return \Illuminate\Http\Response */ public function __invoke(...$args) { [$view, $data, $status, $headers] = array_slice($args, -4); return $this->response->view($view, $data, $status, $headers); } }