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

File "coupon_history.blade.php"

Full Path: /var/www/laravel_filter/resources/views/admin/coupon_history.blade.php
File size: 2.18 KB
MIME-type: text/html
Charset: utf-8

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

        <div class="section-body">

            <div class="row mt-sm-4">
                <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.Coupon Code')}}</th>
                                            <th>{{__('admin.Discount Amount')}}</th>
                                            <th>{{__('admin.Date')}}</th>
                                          </tr>
                                    </thead>
                                    <tbody>
                                        @foreach ($coupon_histories as $index => $coupon_history)
                                            <tr>
                                                <td>{{ ++$index }}</td>
                                                <td>{{ $coupon_history->coupon_code }}</td>
                                                <td>

                                                    {{ currency($coupon_history->discount_amount) }}


                                                </td>
                                                <td>{{ date('H:iA, d M Y', strtotime($coupon_history->created_at)) }}</td>
                                            </tr>
                                        @endforeach
                                    </tbody>
                                </table>
                              </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
</div>

@endsection