24 lines
554 B
PHP
24 lines
554 B
PHP
<?php
|
|
/**
|
|
* page.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' => 'Information',
|
|
'info_title' => 'Information Title',
|
|
'info_content' => 'Content',
|
|
|
|
'pages_index' => 'Index',
|
|
'pages_create' => 'Create',
|
|
'pages_show' => 'Detail',
|
|
'pages_update' => 'Edit',
|
|
'pages_delete' => 'Delete',
|
|
'inquiry' => 'Inquiry',
|
|
];
|