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