model->cachable[$this->model->table])) { list($group, $foreign) = $this->model->cachable[$this->model->table]; if (Cache::has("{$group}_{$id}")) { return Cache::get("{$group}_{$id}"); } } $this->query->where($this->model->getKeyName(), '=', $id); return $this->first($columns); } }