|UserModel newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|UserModel newQuery() * @method static \Illuminate\Database\Eloquent\Builder|UserModel query() * @method static \Illuminate\Database\Eloquent\Builder|UserModel whereEmail($value) * @method static \Illuminate\Database\Eloquent\Builder|UserModel whereId($value) * * @mixin \Eloquent */ class UserModel extends Model { protected $table = 'users'; public $timestamps = false; protected $fillable = ['email', 'password_hash']; }