@extends('admin.layouts.app')
@section('panel')
@lang('Name') |
@lang('Subject') |
@lang('Status') |
@lang('Action') |
@forelse($email_templates as $template)
{{ __($template->name) }} |
{{ __($template->subj) }} |
@if($template->email_status == 1)
@lang('Active')
@else
@lang('Disabled')
@endif
|
|
@empty
{{ __($empty_message) }} |
@endforelse
@endsection