voucher_events = $voucherEventRepository->getList([]); $this->vouchers = $voucherRepository->getList([]); } /** * Get the view / contents that represent the component. * * @return View|string */ public function render() { return view('components.checkout.promo-code', [ 'voucher_events' => $this->voucher_events, 'vouchers' => $this->vouchers ]); } }