@extends('layouts.base') @section('title', '优惠券列表') @section('content')
@include('layouts.tabs')
筛选
{!! tpl_form_field_daterange('time', array('starttime'=>date('Y-m-d H:i', strtotime('-7 days 00:00')),'endtime'=>date('Y-m-d H:i', strtotime('today'))), true) !!}
总数: {{$total}}
@foreach($list as $row) @endforeach
ID 排序 优惠券名称 使用条件/优惠 已使用/已发出/剩余数量 领取中心 创建时间 操作
{{$row['id']}} {{----}} {{$row['display_order']}} {{$row['name']}} @if($row['enough']>0) @else @endif
@if($row['coupon_method']==1) 立减 {{$row['deduct'] ? $row['deduct'] : 0}} 元 @elseif( $row['coupon_method']==2) 打 {{$row['discount'] ? $row['discount'] : 1}} 折 @endif
{{$row['usetotal']}} / {{$row['gettotal']}} / @if($row['total'] == -1) 无限数量 @else {{$row['lasttotal']}} @endif @if($row['get_type']==0) @else @endif {!! $row['created_at'] !!} {{----}}
{!! $pager !!}
@endsection('content')