Hi {{$uname}},
We noticed you left some items in your cart, and we wanted to make sure you didn’t miss out on them!
Here’s what you left behind:
Product Name |
Price |
QTY |
Subtotal |
@foreach($cartItem as $item)
|
{{$item['price']}} KWD |
{{$item['quantity']}} |
{{$item['quantity']*$item['price']}} KWD |
@if($item['addons'])
Add Ons
@foreach($item['addons'] as $addon)
{{(app()->currentLocale()=='en')?$addon['addon']->name_en:$addon['addon']->name_ar}}
|
{{$addon['price']}} KWD |
{{$addon['qty']}} |
{{$addon['price']*$addon['qty']}} KWD |
@endforeach
|
@endif
@endforeach
Don't worry - your cart is still waiting for you! You can complete your purchase by clicking the link below:
Complete Your Purchase: {{route('cart')}}
Looking forward to seeing you back!
Best regards, {{ __('Lereve') }}
|