pingcrm/app/Models/Account.php

22 lines
338 B
PHP
Raw Normal View History

2019-03-18 08:53:00 -03:00
<?php
2020-09-08 19:45:49 -03:00
namespace App\Models;
2019-03-18 08:53:00 -03:00
class Account extends Model
{
public function users()
{
return $this->hasMany(User::class);
}
public function organizations()
{
return $this->hasMany(Organization::class);
}
public function contacts()
{
return $this->hasMany(Contact::class);
}
}