@extends('Layouts/dashboard')
@section('submenu')
@include('Plugins/Payment/Views/Elements/EmailTemplate/submenu',
[
'extra' => view(
'Plugins/Payment/Views/Elements/Settings/email_add_button',
['types' => $types, 'venue' => $venue]
)
])
@endsection
@section('content')
{{ __('Type') }} |
{{ __('Name') }} |
{{ __('Created') }} |
{{ __('Active') }} |
|
@foreach ($data as $email)
{{ $email->type }} |
{{ $email->description }} |
@datetime($email->created) |
{{ ($email->active == 1 ? __('Yes') : __('No')) }} |
|
@endforeach
{!! pagination(['total' => $pagination_total]) !!}
@t('Sender')
@endsection