28 lines
682 B
PHP
28 lines
682 B
PHP
<?php
|
|
namespace app\models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $username
|
|
* @property string $email
|
|
* @property string $password_hash
|
|
* @method static where(int[] $array)
|
|
* @method static find($id)
|
|
*/
|
|
class User extends Model {
|
|
protected $table = 'user';
|
|
protected $fillable = ['username', 'email', 'password_hash', 'role'];
|
|
protected array $dates = ['deleted at'];
|
|
|
|
public static function labels(): array
|
|
{
|
|
return [
|
|
'username' => 'Логин',
|
|
'email' => 'Email',
|
|
'created_at' => 'Создан',
|
|
'updated_at' => 'Обновлен'
|
|
];
|
|
}
|
|
}
|