/** * Register a new OPTIONS route with the router. * * @param string $uri * @param \Closure|array|string $action * * @return \Illuminate\Routing\Route|void */ public function options($uri, $action) { return $this->router->options($uri, $action); }