@extends('layouts.user')
@section('title', 'Email Templates')
@section('content')
| Name |
Subject |
Last Updated |
Actions
|
@forelse($templates as $template)
|
{{ $template->name }}
|
{{ $template->subject }}
|
{{ $template->updated_at->format('M d, Y') }}
|
|
@empty
|
No email templates found. Create one to get started.
|
@endforelse
@endsection