customer = current_customer(); } /** * Get the view / contents that represent the component. * * @return View| */ public function render(): View { $data = [ 'customer' => $this->customer, ]; return view('components.account.sidebar', $data); } }