{{ __('Message Templates') }}
@if ($templates->isEmpty())

{{ __('No templates found') }}

{{ __('Templates can be saved from the broadcast editor') }}

@else
@foreach ($templates as $template)
{{ $template->name }}
{{ __(ucfirst($template->message_type)) }}
@if ($template->message)

{{ Str::limit($template->message, 100) }}

@endif
{{ $template->created_at->diffForHumans() }}
@endforeach
{{ $templates->links() }}
@endif