'array', 'is_new' => 'boolean', ]; public function category() { return $this->belongsTo(Category::class); } public function loans() { return $this->hasMany(Loan::class); } }