model = $resume; parent::__construct(); } /** * Show resume's list. * * @param string $slug * * @return response */ protected function index() { $resumes = $this->model->all(); return $this->theme->of('career::public.resume.index', compact('resumes'))->render(); } /** * Show resume. * * @param string $slug * * @return response */ protected function show($slug) { $resume = $this->model->findBySlug($slug); return $this->theme->of('career::public.resume.show', compact('resume'))->render(); } }