@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 }} {{ $template->email_type }} @if ($template->email_type == 'custom_domain_connected')

{{ __("(After Admin connects a custom domain with server & change the status to 'connected' for that domain request)") }}

@endif @if ($template->email_type == 'custom_domain_rejected')

{{ __("(After Admin change the status to 'rejected' for a custom domain request)") }}

@endif @if ($template->email_type == 'registration_with_premium_package')

{{ __("(After user registers with a premium package using online payment gateway)") }}

@endif @if ($template->email_type == 'registration_with_trial_package')

{{ __("(After user registers with a trial package)") }}

@endif @if ($template->email_type == 'registration_with_free_package')

{{ __("(After user registers with a free package)") }}

@endif
{{ __($template->email_subject) }} {{ __('Edit') }}
@endif
@endsection