芝麻web文件管理V1.00
编辑当前文件:/home/lekhnath/silverray.com.au/oldsite/Modules/Coupon/resources/views/history.blade.php
@extends('admin.master_layout') @section('title')
{{ __('Coupon Histories') }}
@endsection @section('admin-content')
{{ __('SN') }}
{{ __('Coupon Code') }}
{{ __('Discount Amount') }}
{{ __('Date') }}
@forelse ($coupon_histories as $index => $coupon_history)
{{ ++$index }}
{{ $coupon_history->coupon_code }}
{{ currency($coupon_history->discount_amount) }}
{{ formattedDateTime($coupon_history->created_at) }}
@empty
@endforelse
@endsection