@extends('admin.layout')
@section('content')
@if (count($templates) == 0)
{{ __('NO MAIL TEMPLATE FOUND') . '!' }}
@else
# |
{{ __('Mail Type') }} |
{{ __('Mail Subject') }} |
{{ __('Action') }} |
@foreach ($templates as $template)
{{ $loop->iteration }} |
@php $mailType = str_replace('_', ' ', $template->mail_type); @endphp
{{ $mailType }}
|
{{ $template->mail_subject }} |
|
@endforeach
@endif
@endsection