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