'timestamp', 'created_at' => 'timestamp', 'deleted_at' => 'timestamp', ]; public function account() { return $this->belongsTo(Account::class); } public function user() { return $this->belongsTo(User::class); } public function company() { return $this->belongsTo(Company::class); } }