1
0
Fork 0

app/Models/Spell.php: add id to fillable array.

This commit is contained in:
Henrik Hautakoski 2021-07-11 15:29:32 +02:00
parent c8eab74420
commit 87d1d6fd58

View file

@ -20,6 +20,7 @@ class Spell extends Model
* @var array
*/
protected $fillable = [
'id',
'name',
'slug'
];