M0: Laravel 12 + Filament 5.7 脚手架,安装 spatie 全家桶/workerman/yansongda/pay,基础配置
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 站点名称(会被 Setting 表覆盖)
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
'name' => env('BLOG_NAME', 'LaraLog'),
|
||||
|
||||
'description' => env('BLOG_DESCRIPTION', 'A modern blog built with Laravel 12 + Filament 5.'),
|
||||
|
||||
'icp' => env('BLOG_ICP', ''),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 每页文章数等默认值(会被 Setting 表覆盖)
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
'per_page' => 10,
|
||||
|
||||
'rss_num' => 20,
|
||||
|
||||
'comment_min_len' => 2,
|
||||
|
||||
'comment_max_len' => 6000,
|
||||
|
||||
'comment_post_space' => 20,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 附件
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
'attachments_disk' => env('UPLOAD_DISK', 'uploads'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 新文章默认状态
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
'default_post_status' => 'published',
|
||||
];
|
||||
Reference in New Issue
Block a user