/home/techb158/dev.balacoffee.com/app/Models
Edit: /home/techb158/dev.balacoffee.com/app/Models/Purchase.php (1259B)
'integer',
'warehouse_id' => 'integer',
'GrandTotal' => 'double',
'discount' => 'double',
'shipping' => 'double',
'TaxNet' => 'double',
'tax_rate' => 'double',
'paid_amount' => 'double',
];
public function details()
{
return $this->hasMany('App\Models\PurchaseDetail');
}
public function provider()
{
return $this->belongsTo('App\Models\Provider');
}
public function facture()
{
return $this->hasMany('App\Models\PaymentPurchase');
}
public function warehouse()
{
return $this->belongsTo('App\Models\Warehouse');
}
public function user()
{
return $this->belongsTo('App\Models\User');
}
}