{{$coupon->id}} |
{{$coupon->name}} |
{{$coupon->sn}} |
@if($coupon->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
|
@endforeach
@endif