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

{{__('NO ORDER FOUND')}}

@else
@foreach ($templates as $template) @endforeach
{{__('Email Type')}} {{__('Email Subject')}} {{__('Actions')}}
{{$template->email_type}} {{$template->email_subject}} {{__('Edit')}}
@endif
@endsection