hellotreedigital/cms
最新稳定版本:v1.0.8382
Composer 安装命令:
composer require hellotreedigital/cms
包简介
HelloTree CMS
README 文档
README
- Create the database and update your .env file
-
Add the below to config/auth.php:
'guards' => [ ... 'admin' => [ 'driver' => 'session', 'provider' => 'admins', ], ... ], 'providers' => [ ... 'admins' => [ 'driver' => 'eloquent', 'model' => Hellotreedigital\Cms\Models\Admin::class, ], ... ],
- Configure the filesystem in config/filesystem.php, use 'public' as default value if none
-
Run:
composer require hellotreedigital/cms
-
To create the admin:
php artisan admin:create --name=example --email=example@example.com --password=123
Publishables:
-
CMS config:
php artisan vendor:publish --tag=cms_config --force
-
CMS intouch config:
php artisan vendor:publish --tag=cms_intouch_config --force
-
CMS ripply config:
php artisan vendor:publish --tag=cms_ripply_config --force
-
CMS scratch & courage config:
php artisan vendor:publish --tag=cms_scratch_and_courage_config --force
-
CMS imaginelabs. config:
php artisan vendor:publish --tag=cms_imagine_labs_config --force
-
CMS Purple Brains config:
php artisan vendor:publish --tag=cms_purple_brains_config --force
-
CMS routes:
php artisan vendor:publish --tag=cms_routes --force
-
CMS translatables:
php artisan vendor:publish --tag=translatable --force
Http Logs Installation:
-
Add the below to protected $middleware in app/Http/Kernel.php:
\Hellotreedigital\Cms\Middlewares\HttpLogsMiddleware::class,
Preview Checking On The Website:
-
If
auth('admin')->check() && request('ht_preview_mode')returns true, then preview mode is on, you can get the preview data fromsession('ht-preview-mode-request')Code example:$row = auth('admin')->check() && request('ht_preview_mode') ? session('ht-preview-mode-request') : $row = Model::findOrFail($id);
统计信息
- 总下载量: 2.74k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-11-22