<?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;
}
}
Save Cards
Simplify your payment experience by securely saving your card on our platform. After your initial transaction, you can choose to store your card details safely for future use. This feature eliminates the need to re-enter your payment information each time, making checkouts faster while keeping your data secure with advanced encryption and robust security measures.