26 lines
666 B
PHP
26 lines
666 B
PHP
<?php
|
|
/**
|
|
* address.php
|
|
*
|
|
* @copyright 2022 tuikehome.com - All Rights Reserved
|
|
* @link https://www.tuikehome.com
|
|
* @author Edward Yang <service@tuikehome.com>
|
|
* @created 2022-08-22 18:18:59
|
|
* @modified 2022-08-22 18:18:59
|
|
*/
|
|
|
|
return [
|
|
'index' => 'Edit Alamat',
|
|
'name' => 'Nama',
|
|
'phone' => 'Nomor telepon',
|
|
'country_id' => 'ID Negara',
|
|
'zone' => 'provinsi',
|
|
'zone_id' => 'ID Provinsi',
|
|
'address_1' => 'Alamat 1',
|
|
'address_2' => 'Alamat 2',
|
|
'address' => 'Alamat',
|
|
'enter_city' => 'Masukkan alamat',
|
|
'post_code' => 'Kode Pos',
|
|
'default' => 'alamat default',
|
|
];
|