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