10, 'order_number' => 10, 'customer_name' => 10, 'customer_email' => 5, 'customer_phone' => 2, 'customer_address' => 1, 'notes' => 2, ]; /** * Clonable relationships. * * @var array */ protected $cloneable_relations = ['items', 'totals']; public function user() { return $this->belongsTo('App\Models\Auth\User', 'customer_id', 'id'); } public function customer() { return $this->belongsTo('App\Models\Income\Customer'); } public function currency() { return $this->belongsTo('App\Models\Setting\Currency', 'currency_code', 'code'); } public function status() { return $this->belongsTo('App\Models\Income\InvoiceStatus', 'invoice_status_code', 'code'); } public function items() { return $this->hasMany('App\Models\Income\InvoiceItem'); } public function totals() { return $this->hasMany('App\Models\Income\InvoiceTotal'); } public function payments() { return $this->hasMany('App\Models\Income\InvoicePayment'); } public function histories() { return $this->hasMany('App\Models\Income\InvoiceHistory'); } public function scopeDue($query, $date) { return $query->where('due_at', '=', $date); } public function scopeLatest($query) { return $query->orderBy('paid_at', 'desc'); } public function scopeAccrued($query) { return $query->where('invoice_status_code', '!=', 'draft'); } public function onCloning($src, $child = null) { $this->invoice_status_code = 'draft'; $this->invoice_number = $this->getNextInvoiceNumber(); } /** * Convert amount to double. * * @param string $value * @return void */ public function setAmountAttribute($value) { $this->attributes['amount'] = (double) $value; } /** * Convert currency rate to double. * * @param string $value * @return void */ public function setCurrencyRateAttribute($value) { $this->attributes['currency_rate'] = (double) $value; } }