MicroFrameWork/kernel/modules/user/models/User.php

28 lines
698 B
PHP
Raw Normal View History

2024-07-03 14:41:15 +03:00
<?php
2024-09-06 16:53:20 +03:00
namespace kernel\modules\user\models;
2024-07-10 14:39:37 +03:00
use Illuminate\Database\Eloquent\Model;
2024-07-03 14:41:15 +03:00
2024-07-24 14:07:45 +03:00
/**
2024-07-25 13:23:50 +03:00
* @property int $id
2024-07-24 14:07:45 +03:00
* @property string $username
* @property string $email
* @property string $password_hash
2024-07-24 16:31:07 +03:00
* @method static where(int[] $array)
* @method static find($id)
2024-07-24 14:07:45 +03:00
*/
2024-07-03 14:41:15 +03:00
class User extends Model {
2024-07-10 12:42:50 +03:00
protected $table = 'user';
2024-07-10 14:39:37 +03:00
protected $fillable = ['username', 'email', 'password_hash', 'role'];
2024-07-12 13:46:44 +03:00
protected array $dates = ['deleted at'];
public static function labels(): array
{
return [
'username' => 'Логин',
'email' => 'Email',
'created_at' => 'Создан',
'updated_at' => 'Обновлен'
];
}
2024-07-03 14:41:15 +03:00
}