Is it possible to fill a guarded field with the ::create method from Elequent models,
If my User model is like so:
$guarded=['password','id']
$fillable=['username']
Is it possible to do this?
User::create(['username'=>'mynewusername','password'=hash::make($password)])