PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
setting
/
resources
/
views
<div class="flexbox-annotated-section"> <div class="flexbox-annotated-section-annotation"> <div class="annotated-section-title pd-all-20"> <h2>{{ trans($data['name']) }}</h2> </div> <div class="annotated-section-description pd-all-20 p-none-t"> <p class="color-note">{{ trans($data['description']) }}</p> </div> </div> <div class="flexbox-annotated-section-content"> <div class="wrapper-content pd-all-20"> <div class="table-wrap"> <table class="table product-list ws-nm"> <thead> <tr> <th class="border-none-b">{{ trans('core/setting::setting.template') }}</th> <th class="border-none-b"> {{ trans('core/setting::setting.description') }} </th> @if ($type !== 'core') <th class="border-none-b text-center"> {{ trans('core/setting::setting.enable') }}</th> @else <th> </th> @endif </tr> </thead> <tbody> @foreach ($data['templates'] as $key => $template) <tr> <td> <a class="hover-underline a-detail-template" href="{{ route('setting.email.template.edit', ['type' => $type, 'name' => $module, 'template_file' => $key]) }}"> {{ trans($template['title']) }} </a> </td> <td>{{ trans($template['description']) }}</td> <td class="text-center template-setting-on-off"> @if ($type !== 'core' && Arr::get($template, 'can_off', false)) <div class="form-group"> {!! Form::onOff(get_setting_email_status_key($type, $module, $key), get_setting_email_status($type, $module, $key) == 1, ['data-key' => 'email-config-status-btn', 'data-change-url' => route('setting.email.status.change')] ) !!} </div> @else — @endif </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div>
[+]
..
[-] index.blade.php
[edit]
[-] template-line.blade.php
[edit]
[-] media.blade.php
[edit]
[-] test-email.blade.php
[edit]
[-] email-template-edit.blade.php
[edit]
[-] email.blade.php
[edit]