diff --git a/app/Models/EggVariable.php b/app/Models/EggVariable.php index ad3a707c3..003893bb3 100644 --- a/app/Models/EggVariable.php +++ b/app/Models/EggVariable.php @@ -79,7 +79,7 @@ class EggVariable extends Model public function required(): Attribute { return Attribute::make( - get: fn ($value, $attributes) => in_array('required', explode('|', $this->rules)), + get: fn () => in_array('required', explode('|', $this->rules)), ); }