@extends('layouts.backend.app') @section('title','Email Templates') @section('content')
{{ __('Email Templates') }}
@can(\App\Models\Permission::PERM_EMAIL_TEMPLATE_CREATE) @endcan
@foreach($emailTemplates as $key => $template) @endforeach
Type Subject Created At Actions
{{ $template->emailType->name }} {{ $template->subject }} {{ $template->created_at->diffForHumans() }}
@endsection @push('js') @endpush