From d15f558d74ec4ef37da07f8fe427d3ef6b5a3af2 Mon Sep 17 00:00:00 2001 From: Rodrigo Mesquita <30835404+rrmesquita@users.noreply.github.com> Date: Sat, 25 Jan 2025 00:13:47 -0300 Subject: [PATCH] chore: remove fillable property from User class --- app/Models/User.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index 074354d..0bdc561 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -26,17 +26,6 @@ final class User extends Authenticatable /** @use HasFactory<\Database\Factories\UserFactory> */ use HasFactory, Notifiable; - /** - * The attributes that are mass assignable. - * - * @var list - */ - protected $fillable = [ - 'name', - 'email', - 'password', - ]; - /** * The attributes that should be hidden for serialization. *