24 lines
596 B
PHP
24 lines
596 B
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'index' => 'Area Group',
|
|
'regions_index' => 'Index',
|
|
'regions_create' => 'Create',
|
|
'regions_show' => 'Detail',
|
|
'regions_update' => 'Edit',
|
|
'regions_delete' => 'Delete',
|
|
'name' => 'Name',
|
|
'describe' => 'Describe',
|
|
'country' => 'Country',
|
|
'zone' => 'Zone',
|
|
];
|