관리-도구
편집 파일: ProductVariant.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class ProductVariant extends Model { protected $table = 'product_variants'; protected $fillable = [ 'product_id', 'name', 'qty','cost','price','code','image' ]; protected $casts = [ 'product_id' => 'integer', 'qty' => 'double', 'cost' => 'double', 'price' => 'double', ]; }