repository = $gallery; parent::__construct(); } /** * Show gallery's list. * * @param string $slug * * @return response */ protected function index() { $galleries = $this->repository ->pushCriteria(app('Litepie\Repository\Criteria\RequestCriteria')) ->scopeQuery(function($query){ return $query->orderBy('id','DESC'); })->paginate(); return $this->response->title(trans('$gallery::$gallery.names')) ->view('$gallery::public.gallery.index') ->data(compact('$galleries')) ->output(); } /** * Show gallery's list based on a type. * * @param string $slug * * @return response */ protected function list($type = null) { $galleries = $this->repository ->pushCriteria(app('Litepie\Repository\Criteria\RequestCriteria')) ->scopeQuery(function($query){ return $query->orderBy('id','DESC'); })->paginate(); return $this->response->title(trans('$gallery::$gallery.names')) ->view('$gallery::public.gallery.index') ->data(compact('$galleries')) ->output(); } /** * Show gallery. * * @param string $slug * * @return response */ protected function show($slug) { $gallery = $this->repository->scopeQuery(function($query) use ($slug) { return $query->orderBy('id','DESC') ->where('slug', $slug); })->first(['*']); return $this->response->title($$gallery->name . trans('$gallery::$gallery.name')) ->view('$gallery::public.gallery.show') ->data(compact('$gallery')) ->output(); } }