13 lines
156 B
PHP
13 lines
156 B
PHP
<?php
|
|
|
|
|
|
class Users extends \Database\Model
|
|
{
|
|
|
|
|
|
|
|
public function hasD()
|
|
{
|
|
return $this->hasOne(static::class, 'id', 'id')->with([]);
|
|
}
|
|
} |