JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "email_template.blade.php"

Full Path: /var/www/laravel_filter/Modules/GlobalSetting/Resources/views/email_template.blade.php
File size: 2.17 KB
MIME-type: text/html
Charset: utf-8

@extends('admin.master_layout')
@section('title')
<title>{{__('admin.Email Template')}}</title>
@endsection
@section('admin-content')
<!-- Main Content -->
<div class="main-content">
    <section class="section">
        <div class="section-header">
            <h1>{{__('admin.Email Template')}}</h1>
        </div>

        <div class="section-body">
            <div class="row">
                <div class="col-12">
                    <div class="card">
                        <div class="card-body">
                            <div class="table-responsive table-invoice">
                                <table class="table table-striped" id="dataTable">
                                    <thead>
                                        <tr>
                                            <th>{{__('admin.SN')}}</th>
                                            <th>{{__('admin.Email Template')}}</th>
                                            <th>{{__('admin.Subject')}}</th>
                                            <th>{{__('admin.Action')}}</th>
                                          </tr>
                                    </thead>
                                    <tbody>
                                        @foreach ($templates as $index => $item)
                                            <tr>
                                                <td>{{ ++$index }}</td>
                                                <td>{{ ucfirst($item->name) }}</td>
                                                <td>{{ $item->subject }}</td>
                                                <td>
                                                    <a  href="{{ route('admin.edit-email-template',$item->id) }}" class="btn btn-success btn-sm"><i class="fas fa-edit"></i></a>
                                                </td>
                                            </tr>
                                        @endforeach
                                    </tbody>
                                </table>
                              </div>
                        </div>
                    </div>
                </div>

            </div>
        </div>
    </section>
  </div>

@endsection