@extends('admin.layouts') @section('css') @endsection @section('content')

卡券列表

生成
重 置
@foreach($couponList as $coupon) @endforeach
# 名称 券码 图片 类型 用途 优惠 有效期 状态 操作
{{$coupon->id}} {{$coupon->name}} {{$coupon->sn}} @if($coupon->logo) 优惠码logo @endif @if($coupon->type == '1') 抵用券 @elseif($coupon->type == '2') 折扣券 @else 充值券 @endif {{$coupon->usage == '1' ? '一次性' : '重复使用'}} @if($coupon->type == 2) {{$coupon->discount}}折 @else {{$coupon->amount}}元 @endif {{date('Y-m-d', $coupon->available_start)}} ~ {{date('Y-m-d', $coupon->available_end)}} @if($coupon->usage == 1) @if($coupon->status == '1') 已使用 @elseif ($coupon->status == '2') 已失效 @else 未使用 @endif @elseif ($coupon->usage == 2) @if ($coupon->status == '2') 已失效 @else 生效中 @endif @endif @if($coupon->status != '1') @endif
@endsection @section('script') @endsection