*/ use HasFactory, Notifiable; /** * The attributes that are mass assignable. * * @var list */ protected $fillable = [ 'character_id', 'character_name', 'character_owner_hash', ]; /** * The attributes that should be hidden for serialization. * * @var list */ protected $hidden = [ 'remember_token', ]; }