*/ use HasFactory; protected $fillable = [ 'title', 'description', 'notes', 'vendor_url', 'category_id', 'price', 'margin', 'unit_id', 'image', ]; protected $casts = [ 'price' => 'decimal:2', 'margin' => 'decimal:2' ]; public function category() { return $this->belongsTo(ProductCategory::class); } public function unit() { return $this->belongsTo(Unit::class); } }