@extends('admin.layout') @section('content')
{{ __('Mail Templates') }}
@if (count($templates) == 0)

{{ __('NO MAIL TEMPLATE FOUND') . '!' }}

@else
@foreach ($templates as $template) @endforeach
# {{ __('Mail Type') }} {{ __('Mail Subject') }} {{ __('Action') }}
{{ $loop->iteration }} @php $mailType = str_replace('_', ' ', $template->mail_type); @endphp {{ $mailType }} {{ $template->mail_subject }}
@endif
@endsection