📄 Email Templates

Back to Emails
@foreach($categories as $category) @endforeach
@foreach($templates as $template)

{{ $template->name }}

{{ ucfirst($template->category) }}

Subject:

{{ $template->subject }}

Preview:

{!! Str::limit(strip_tags($template->body), 100) !!}
{{ $template->created_at->format('M d, Y') }}
@endforeach
@if($templates->count() === 0)

No Templates Found

Create your first email template to get started.

@endif @if($templates->hasPages())
{{ $templates->links() }}
@endif