@php
$tos = \App\Models\DocumentTemplate::where('category', 'tos')->where('status', 'active')->latest()->first();
@endphp
@if($tos)
{{-- 建议使用 Tailwind Typography 插件的 prose 类 --}}
{!! $tos->html_template !!}
@else
Terms of Service content is being updated...
@endif
@php
$privacy = \App\Models\DocumentTemplate::where('category', 'privacy')->where('status', 'active')->latest()->first();
@endphp
@if($privacy)
{{-- 建议使用 Tailwind Typography 插件的 prose 类 --}}
{!! $privacy->html_template !!}
@else
Privacy Policy content is being updated...
@endif