*/ protected $fillable = [ 'name', 'username', 'email', 'phone', 'password', 'avatar', 'bio', 'role', // ⬅️ Tambahkan role di sini ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ]; }