관리-도구
편집 파일: Sale.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Sale extends Model { protected $dates = ['deleted_at']; protected $fillable = [ 'date', 'Ref', 'is_pos', 'client_id', 'GrandTotal', 'qte_retturn', 'TaxNet', 'tax_rate', 'notes', 'total_retturn', 'warehouse_id', 'user_id', 'statut', 'discount', 'shipping','time','used_points','earned_points','discount_from_points', 'paid_amount', 'payment_statut', 'created_at', 'updated_at', 'deleted_at','shipping_status','subscription_id' ]; protected $casts = [ 'is_pos' => 'integer', 'GrandTotal' => 'double', 'qte_retturn' => 'double', 'total_retturn' => 'double', 'user_id' => 'integer', 'client_id' => 'integer', 'warehouse_id' => 'integer', 'subscription_id' => 'integer', 'discount' => 'double', 'shipping' => 'double', 'TaxNet' => 'double', 'tax_rate' => 'double', 'paid_amount' => 'double', 'used_points' => 'double', 'earned_points' => 'double', 'discount_from_points' => 'double', ]; public function subscription() { return $this->belongsTo(Subscription::class, 'subscription_id'); } public function user() { return $this->belongsTo('App\Models\User'); } public function details() { return $this->hasMany('App\Models\SaleDetail'); } public function client() { return $this->belongsTo('App\Models\Client'); } public function facture() { return $this->hasMany('App\Models\PaymentSale'); } public function warehouse() { return $this->belongsTo('App\Models\Warehouse'); } }