관리-도구
편집 파일: QuotationDetail.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class QuotationDetail extends Model { protected $fillable = [ 'id', 'product_id', 'quotation_id','sale_unit_id', 'total', 'quantity', 'product_variant_id', 'price', 'TaxNet', 'discount', 'discount_method', 'tax_method', ]; protected $casts = [ 'total' => 'double', 'quantity' => 'double', 'price' => 'double', 'TaxNet' => 'double', 'discount' => 'double', 'quotation_id' => 'integer', 'sale_unit_id' => 'integer', 'product_id' => 'integer', 'product_variant_id' => 'integer', ]; public function quotation() { return $this->belongsTo('App\Models\Quotation'); } public function product() { return $this->belongsTo('App\Models\Product'); } }