getLocale(); $format = $locale === 'ar' ? 'd/m/Y' : 'm/d/Y'; return Carbon::parse($date)->format($format); } /** * Format a time in 12-hour format with AM/PM. */ public static function formatTime(DateTimeInterface|string|null $time, ?string $locale = null): string { if ($time === null) { return ''; } return Carbon::parse($time)->format('g:i A'); } /** * Format a datetime according to the current locale. * * Arabic: DD/MM/YYYY g:i A * English: MM/DD/YYYY g:i A */ public static function formatDateTime(DateTimeInterface|string|null $datetime, ?string $locale = null): string { if ($datetime === null) { return ''; } $locale = $locale ?? app()->getLocale(); $format = $locale === 'ar' ? 'd/m/Y g:i A' : 'm/d/Y g:i A'; return Carbon::parse($datetime)->format($format); } }