23 lines
554 B
PHP
23 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' => '文章管理',
|
|
'info_title' => '信息標題',
|
|
'info_content' => '內容',
|
|
|
|
'pages_index' => '文章列表',
|
|
'pages_create' => '創建文章',
|
|
'pages_show' => '文章詳情',
|
|
'pages_update' => '文章編輯',
|
|
'pages_delete' => '刪除文章',
|
|
];
|