zenbolt/cms
最新稳定版本:1.0.7
Composer 安装命令:
composer require zenbolt/cms
包简介
Zenbolt 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' => Zenbolt\Cms\Models\Admin::class, ], ... ],
- Configure the filesystem in config/filesystem.php, use 'public' as default value if none
-
Run:
composer require zenbolt/cms
-
To make sure the project is well migrated:
php artisan migrate
-
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 sheefra config:
php artisan vendor:publish --tag=cms_sheefra_config --force
-
CMS viddy config:
php artisan vendor:publish --tag=cms_viddy_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:
\Zenbolt\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);
If laravel's symlink didn't work on windows, using command prompt (not powershell do the following):
-
https://laracasts.com/discuss/channels/laravel/how-to-link-up-storage-files
cd C:\xampp\htdocs\fresh\public\ mklink /D storage ..\storage\app\public
统计信息
- 总下载量: 13
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-04-09