add id to guarded

This commit is contained in:
2025-05-07 14:42:22 +03:30
parent 992ddf2f66
commit 6995377b6f
9 changed files with 12 additions and 11 deletions

View File

@@ -8,5 +8,5 @@ use Illuminate\Database\Eloquent\Model;
class Event extends Model
{
use HasFactory;
protected $guarded = [];
protected $guarded = ['id'];
}