@if(isset($gift_vouchers) && $gift_vouchers != '[]' && $gift_vouchers != null)
| ID |
Image |
Name |
Quantity |
Description |
Action |
@foreach($gift_vouchers as $key=>$gift_voucher)
|
{{ ++$key }}
|
@if(isset($images))
@foreach($images as $image)
@if($image->voucher_id == $gift_voucher->id)
@break
@endif
@endforeach
@endif
|
{{ ucwords($gift_voucher->name )}}
|
{{ $gift_voucher->quantity }}
|
{{ ucfirst(implode(' ', array_slice(explode(' ', $gift_voucher->description), 0, 10)).'...')}}
|
|
@endforeach
@else
No Any Gift Voucher yet...!
@endif