public function index() { $data['q'] = Input::get('q'); $this->hasAccess(); $data['adverts'] = $this->model->paginate(15); $data['permissions'] = $this->permissions(); $this->theme->prependTitle(Lang::get('advert::advert.module.names') . ' :: '); return $this->theme->of('advert::advert.admin.index', $data)->render(); }
public function index() { $data['q'] = Input::get('q'); $this->hasAccess(); \Session::put('category_id', Input::get('id')); $data['galleries'] = $this->model->paginate(15); $data['permissions'] = $this->permissions(); $this->theme->prependTitle(Lang::get('gallery::gallery.module.names') . ' :: '); return $this->theme->of('gallery::gallery.admin.index', $data)->render(); }