repository = $kegiatan; parent::__construct(); } /** * Show kegiatan's list. * * @param string $slug * * @return response */ protected function index() { $kegiatans = $this->repository->scopeQuery(function($query){ return $query->orderBy('id','DESC'); })->paginate(); return $this->theme->of('kegiatan::public.kegiatan.index', compact('kegiatans'))->render(); } /** * Show kegiatan. * * @param string $slug * * @return response */ protected function show($slug) { $kegiatan = $this->repository->scopeQuery(function($query) use ($slug) { return $query->orderBy('id','DESC') ->where('slug', $slug); })->first(['*']); return $this->theme->of('kegiatan::public.kegiatan.show', compact('kegiatan'))->render(); } }