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