@php $timestamp = strtotime($message->created_at); if (date("Y-m-d", $timestamp) == date("Y-m-d")) { $formattedTime = "Today, "; $formattedTime .= Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $message->created_at, 'UTC') ->setTimezone($timezone) ->format('h:i a'); } else { $formattedTime = Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $message->created_at, 'UTC') ->setTimezone($timezone) ->format('F j, Y, h:i a'); } @endphp {{$formattedTime}}