<?php
namespace Faker\Provider\ka_GE;
class DateTime extends \Faker\Provider\DateTime
{
public static function dayOfWeek($max = 'now')
{
$map = [
'Sunday' => 'კვირა',
'Monday' => 'ორშაბათი',
'Tuesday' => 'სამშაბათი',
'Wednesday' => 'ოთხშაბათი',
'Thursday' => 'ხუთშაბათი',
'Friday' => 'პარასკევი',
'Saturday' => 'შაბათი',
];
$week = static::dateTime($max)->format('l');
return $map[$week] ?? $week;
}
public static function monthName($max = 'now')
{
$map = [
'January' => 'იანვარი',
'February' => 'თებერვალი',
'March' => 'მარტი',
'April' => 'აპრილი',
'May' => 'მაისი',
'June' => 'ივნისი',
'July' => 'ივლისი',
'August' => 'აგვისტო',
'September' => 'სექტემბერი',
'October' => 'ოქტომბერი',
'November' => 'ნოემბერი',
'December' => 'დეკემბერი',
];
$month = static::dateTime($max)->format('F');
return $map[$month] ?? $month;
}
}
If you encounter any issues or need assistance, please reach out to our dedicated developer support team Contact Us
Thank you for choosing Kueue Pay Payment Gateway Solutions! We look forward to seeing your integration thrive and provide a seamless payment experience for your valued customers.