Skip to content

Commit

Permalink
Add missing ID to searchable array
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmile committed Nov 10, 2023
1 parent e616b04 commit ead7fca
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/Models/Conference.php
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ public function getEventDatesDisplayAttribute()
public function toSearchableArray()
{
return [
'id' => $this->id,
'title' => $this->title,
'location' => $this->location,
];
Expand Down

0 comments on commit ead7fca

Please sign in to comment.