'array', 'result' => 'array', ]; /** * The attributes that are mass assignable. * * @var array */ protected $guarded = []; public function category() { return $this->belongsTo(Category::class)->select(['id', 'name']); } }