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