@php
$templates = config('prompt_templates.templates', []);
$categories = config('prompt_templates.categories', []);
$groupedTemplates = collect($templates)->groupBy('category');
@endphp
快速模板
选择一个预设模板快速开始,您可以在此基础上进行修改
@foreach($groupedTemplates as $category => $temps)
{{ $categories[$category] ?? $category }}
@foreach($temps as $template)
@endforeach
@endforeach
点击模板将自动填充到编辑器中,您可以根据需要进行修改