관리-도구
편집 파일: CombinedProduct.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class CombinedProduct extends Model { use HasFactory; protected $fillable = [ 'product_id', 'quantity', ]; protected $casts = [ 'product_id' => 'integer', 'quantity' => 'double', ]; public function product() { return $this->belongsTo(Product::class, 'combined_product_id'); } }