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