@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Email Templates')) @section('titlebar_actions') @if ($installedExtension) @php try { $localizedUrl = LaravelLocalization::localizeUrl(route('dashboard.newsletter.new')); } catch (\Exception $e) { $localizedUrl = ''; } @endphp {{ __('Add New Template') }} @endif @endsection @section('content')
{{ __('Title') }} {{ __('Subject') }} {{ __('Actions') }} @foreach ($list as $entry) {{ $entry->title }} {{ $entry->subject }} @if (!$entry->system) @endif @if ($app_is_demo) @else @if ($entry->role != 'default') @endif @endif @if (!$entry->system) @endif @endforeach
@endsection @push('script') @endpush