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

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

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