{{ t('email_templates') }}

{{ t('email_templates') }}

@forelse ($templates as $template)

{{ $template->name }}

{{ $template->is_active ? t('active') : t('inactive') }}

{{ t('category') }}

{{ $template->category ?: 'N/A' }}

{{ t('type') }}

{{ $template->type ?: 'N/A' }}

{{ t('subject') }}

{{ $template->subject }}

@if($template->description)

{{ t('description') }}

{{ $template->description }}

@endif
{{ $template->is_system ? t('system') : t('custom') }} @if($template->use_layout) {{ t('with_layout') }} @endif
@if(checkPermission('admin.email_template.edit')) {{ t('edit_template') }} @endif
@empty

{{ t('no_templates_found') }}

@endforelse