@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->type === 3 ? '一次性' : ($coupon->usable_times ?? '无限制')}} {{$coupon->value}}@if($coupon->type === 2)%@else元@endif {{date('Y-m-d', $coupon->start_time)}} ~ {{date('Y-m-d', $coupon->end_time)}} @if($coupon->status === 1) 已使用 @elseif ($coupon->status === 2) 已失效 @else 生效中 @endif @if($coupon->status !== 1) @endif
@endsection @section('script') @endsection