@php $serverTime = new DateTime('now'); $pstTime = clone $serverTime; $pstTime->setTimezone(new DateTimeZone('America/Los_Angeles')); // PST timezone $time = $serverTime->format('H'); @endphp @if ($time < '12') Good Morning! Today is {{ $pstTime->format('D m/d h:i A') }} @elseif ($time >= '12' && $time < '17') Good Afternoon! Today is {{ $pstTime->format('D m/d h:i A') }} @elseif ($time >= '17' && $time < '19') Good Evening! Today is {{ $pstTime->format('D m/d h:i A') }} @elseif ($time >= '19') Good Night! Today is {{ $pstTime->format('D m/d h:i A') }} @endif