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