Files
laralog/config/blog.php
T

49 lines
1.3 KiB
PHP

<?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',
];