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