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