This commit is contained in:
cjd
2026-02-05 22:22:10 +08:00
parent fef9fe0c31
commit bf3a2e6971
273 changed files with 30605 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Http\Controllers;
use App\Models\SiteSetting;
class PageController extends Controller
{
public function about()
{
$content = SiteSetting::value('about_content', "我们专注于收录优质 AI 工具与产品,帮助用户快速找到合适的解决方案。");
return view('page.about', [
'content' => $content,
]);
}
}