From 615c084995723b90e9fe312f46b7d8dcd2905acd Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Wed, 1 Apr 2026 20:15:13 +0200 Subject: [PATCH] add event_photo_path attribut to Event model --- app/Models/Event.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/Event.php b/app/Models/Event.php index b4feeef..25cf5b2 100644 --- a/app/Models/Event.php +++ b/app/Models/Event.php @@ -11,6 +11,7 @@ class Event extends Model protected $fillable = [ "name", "description", + "event_photo_path", 'start', 'end', ];