title = $title; $this->menu = $menu; $this->device_id = $deviceId; $this->current_tab = $currentTab; $this->selected = $selected; } /** * Determine if the given option is the current selected option. * * @param string $url * @return bool */ public function isSelected($url) { return $url === $this->selected; } /** * Get the view / contents that represent the component. * * @return \Illuminate\View\View|string */ public function render() { return view('components.submenu'); } }