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