From ead7fcab537357a56adf38060139ccf150ccb233 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 10 Nov 2023 11:42:47 -0500 Subject: [PATCH] Add missing ID to searchable array --- app/Models/Conference.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/Conference.php b/app/Models/Conference.php index 19664dd7..b6a27587 100644 --- a/app/Models/Conference.php +++ b/app/Models/Conference.php @@ -314,6 +314,7 @@ public function getEventDatesDisplayAttribute() public function toSearchableArray() { return [ + 'id' => $this->id, 'title' => $this->title, 'location' => $this->location, ];