'object', 'updated_at' => 'timestamp', 'created_at' => 'timestamp', 'deleted_at' => 'timestamp', ]; protected $with = [ // 'client', // 'company', ]; public function company() { return $this->belongsTo(Company::class); } public function client() { return $this->belongsTo(Client::class); } public function user() { return $this->belongsTo(User::class); } public function invitations() { $this->morphMany(RecurringQuoteInvitation::class); } }