8 lines
213 B
PHP
8 lines
213 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$appointment_attendance_modes = array (
|
|
'offline' => 'ऑफलाइन',
|
|
'online' => 'ऑनलाइन',
|
|
'mixed' => 'ऑफ़लाइन और ऑनलाइन',
|
|
);
|