'datetime', 'end_date' => 'datetime', ]; public const MEETING_TYPE = [ 1 => 'Meeting', 2 => 'Training Sessions', 3 => 'Seminars', 4 => 'Celebrations', 5 => 'Product Launches', 6 => 'Wellness Events', ]; public $appends = ['status_name']; public function getMeetingType() { return self::MEETING_TYPE[$this->type] ?? null; } }