mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-08 04:28:56 -06:00
14 lines
201 B
PHP
14 lines
201 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ChatStatus extends Model
|
|
{
|
|
public function users()
|
|
{
|
|
return $this->hasMany(User::class, 'chat_status_id');
|
|
}
|
|
}
|