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