19 lines
424 B
PHP
19 lines
424 B
PHP
<!--
|
|
模板中接收以下三个变量:
|
|
name 字段名称
|
|
value 字段值
|
|
model 当前行数据
|
|
-->
|
|
|
|
@if($value)
|
|
<div class="list-group">
|
|
@if($value['coupon'])
|
|
<div class="list-group-item">优惠券
|
|
@foreach(\App\Models\Coupon::whereIn('id', $value['coupon'])->get() as $item)
|
|
<span class="label bg-primary">{{ $item->name }}</span>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
</div>
|
|
@endif
|