From fe55cb5f33989556c1afaa8010aaecf5912a9d61 Mon Sep 17 00:00:00 2001 From: Konstantinos Arvanitakis Date: Wed, 16 Sep 2026 23:22:32 +0300 Subject: [PATCH] Fix: Removing Duplicate Event Dispatching for UserCreated model --- app/Models/User.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index b2ecc8e..f2d1d11 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -18,10 +18,6 @@ class User extends Authenticatable implements LunarUserInterface /** @use HasFactory */ use HasFactory, Notifiable; - protected $dispatchesEvents = [ - 'created' => UserCreated::class, - ]; - /** * The attributes that are mass assignable. *