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