/home/techb158/dev.balacoffee.com/app/Models
Edit: /home/techb158/dev.balacoffee.com/app/Models/QuotationDetail.php (896B)
'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');
}
}