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

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

@else
@foreach ($templates as $template) @endforeach
# {{ __('Email Type') }} {{ __('Mail Subject') }} {{ __('Action') }}
{{ $loop->iteration }} {{ str_replace('_', ' ', $template->email_type) }} {{ $template->email_subject }} {{ __('Edit') }}
@endif
@endsection