user(); return [ 'id' => $this->id, 'title' => $this->title, 'description' => $this->description, 'cover' => Storage::disk(config('admin.upload.disk'))->url($this->cover), 'content' => $this->content, 'clicks' => $this->clicks, 'created_at' => $this->created_at->format('Y年m月d日'), 'isFavorited' => $this->isFavoritedBy($user), ]; } }