12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace App\Http\Controllers;
- class ConfigController extends Controller
- {
-
- public function __construct()
- {
-
- }
- public function index()
- {
- return [
-
- 'type' => [
- 'image' => '图文',
- 'video' => '视频',
- 'html' => '富文本',
- ],
-
- 'sort' => [
- 'praise_count' => '点赞数',
- 'share_count' => '分享数',
- 'pv' => '浏览量',
- 'comment_count' => '评论数',
- 'create_bean' => '彩虹豆数',
- ],
-
- 'log_type' => [
- 'add_data' => '增加数据',
- ],
-
- 'is_suggest' => [
- '1' => '是',
- '0' => '否',
- ],
-
- 'is_hide' => [
- '1' => '是',
- '0' => '否',
- ],
-
- 'is_delete' => [
- '1' => '是',
- '0' => '否',
- ],
-
- 'is_hot' => [
- '1' => '是',
- '0' => '否',
- ],
-
- 'is_open' => [
- '1' => '是',
- '0' => '否',
- ],
- ];
- }
- }
|