<?php

namespace App\Http\Resources;

use Illuminate\Http\Resources\Json\JsonResource;

class ArticleResource extends JsonResource
{
    /**
     * Transform the resource into an array.
     *
     * @param \Illuminate\Http\Request $request
     * @return array
     */
    public function toArray($request)
    {
        return [
            'id'              => $this->id,
            'title'           => $this->title,
            'description'     => $this->description,
            'slug'            => $this->slug,
            'thumbnail'       => $this->thumbnail,
            'category_detail' => isset($this->category_detail) ? $this->category_detail : [],
            'user'            => isset($this->user) ? $this->user : [],
            'publish_at'      => $this->publish_at,
        ];
    }
}
