@php
use Carbon\Carbon;
date_default_timezone_set('Asia/Dhaka');
$current_time = Carbon::now();
$time_of_day = '';
if ($current_time->hour >= 5 && $current_time->hour < 12) {
$time_of_day = 'Morning';
} elseif ($current_time->hour >= 12 && $current_time->hour < 18) {
$time_of_day = 'Afternoon';
} else {
$time_of_day = 'Evening';
}
$wishMessage = "Good $time_of_day";
@endphp