/home/techb158/dev.balacoffee.com/app/Models
Edit: /home/techb158/dev.balacoffee.com/app/Models/Product.php (1954B)
'integer',
'sub_category_id' => 'integer',
'unit_id' => 'integer',
'unit_sale_id' => 'integer',
'unit_purchase_id' => 'integer',
'is_variant' => 'integer',
'is_imei' => 'integer',
'brand_id' => 'integer',
'is_active' => 'integer',
'cost' => 'double',
'price' => 'double',
'stock_alert' => 'double',
'TaxNet' => 'double',
];
public function ProductVariant()
{
return $this->belongsTo('App\Models\ProductVariant');
}
public function PurchaseDetail()
{
return $this->belongsTo('App\Models\PurchaseDetail');
}
public function SaleDetail()
{
return $this->belongsTo('App\Models\SaleDetail');
}
public function QuotationDetail()
{
return $this->belongsTo('App\Models\QuotationDetail');
}
public function category()
{
return $this->belongsTo('App\Models\Category');
}
public function unit()
{
return $this->belongsTo('App\Models\Unit', 'unit_id');
}
public function unitPurchase()
{
return $this->belongsTo('App\Models\Unit', 'unit_purchase_id');
}
public function unitSale()
{
return $this->belongsTo('App\Models\Unit', 'unit_sale_id');
}
public function brand()
{
return $this->belongsTo('App\Models\Brand');
}
}