This commit is contained in:
f4ilji
2024-12-24 19:33:35 +05:00
parent 700bf98de6
commit da4df5b89c
2 changed files with 7 additions and 1 deletions
@@ -26,7 +26,7 @@ class ClientEventFullResource extends JsonResource
'event_time_start' => Carbon::parse($this->event_time_start)->format('H:i'),
'address' => $this->address,
'is_online' => $this->is_online,
'category' => $this->category->title,
'category' => $this->category->title ?? null,
];
}
}