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