| 12345678910111213141516171819202122232425262728 |
- <?php
- declare (strict_types=1);
- namespace App\Model;
- /**
- */
- class User extends Model
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'Users';
- /**
- * The attributes that are mass assignable.
- *
- * @var array
- */
- protected $fillable = ['id', 'real_name', 'nickname', 'avatar', 'email', 'enable', 'is_admin', 'is_agent', 'user_type', 'created_at', 'updated_at'];
- /**
- * The attributes that should be cast to native types.
- *
- * @var array
- */
- protected $casts = [];
- }
|