'object', 'updated_at' => 'timestamp', 'created_at' => 'timestamp', 'deleted_at' => 'timestamp', ]; const STATUS_DRAFT = 1; const STATUS_SENT = 2; const STATUS_APPROVED = 3; const STATUS_EXPIRED = -1; public function company() { return $this->belongsTo(Company::class); } public function user() { return $this->belongsTo(User::class)->withTrashed(); } public function client() { return $this->belongsTo(Client::class)->withTrashed(); } public function assigned_user() { return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed(); } public function invitations() { return $this->hasMany(QuoteInvitation::class); } public function documents() { return $this->morphMany(Document::class, 'documentable'); } /** * Access the quote calculator object * * @return object The quote calculator object getters */ public function calc() { $quote_calc = null; if ($this->uses_inclusive_taxes) { $quote_calc = new InvoiceSumInclusive($this); } else { $quote_calc = new InvoiceSum($this); } return $quote_calc->build(); } }