Добавления не кешируются в Laravel
Я пытаюсь кешировать объект в Laravel.
$categories = Cache::remember('categories', 10, function () {
return Category::with('forums')
->select('id', 'name')
->orderBy('order')
->get();
});
Проблема в том, что у меня есть добавленные значения в модели форума.
protected $appends = ['number_of_topics', 'number_of_replies', 'last_post'];
public function getNumberOfTopicsAttribute() {
return Topic::where('forum_id', '=', $this->id)
->count();
}
public function getNumberOfRepliesAttribute() {
return Reply::whereExists(function ($query) {
$query->select(DB::raw(1))
->from('topics')
->whereColumn('topics.id', '=', 'replies.topic_id')
->where('topics.forum_id', '=', $this->id);
})->count();
}
public function getLastPostAttribute() {
$lastPost = new LastPost($this->id);
if ($lastPost->topic_id == null) {
return null;
}
return $lastPost;
}
Все добавленные значения не кэшируются. Как сделать так, чтобы они кешировались вместе с $ категориями?