'integer', 'price' => 'decimal:2', 'subtotal' => 'decimal:2', ]; // Relationships public function transaksi() { return $this->belongsTo(Transaksi::class); } public function product() { return $this->belongsTo(Product::class); } }