@extends('layouts.app') @section('title', __('dashboard.Email Templates')) @section('page_heading', __('dashboard.Email Templates')) @section('content')
| {{ __('dashboard.Template Name') }} | {{ __('dashboard.Email Subject') }} | {{ __('dashboard.Created By') }} | {{ __('dashboard.Created At') }} | {{ __('dashboard.Actions') }} |
|---|---|---|---|---|
|
{{ $t->name }}
#{{ $t->id }}
|
{{ $t->subject }} |
{{ mb_substr($t->creator->name ?? '?', 0, 1) }}
{{ $t->creator->name ?? '—' }}
|
{{ optional($t->created_at)->format('Y-m-d H:i') }} |
@canany(['edit email templates','delete email templates'])
@can('edit email templates')
{{ __('dashboard.Edit') }}
@endcan
@can('delete email templates')
@endcan
|