@inject('cart', 'App\Http\Services\ShoppingCartService')

{{ $cart->count() }} מוצרים בסל הקניות

{{--
הזיכוי בגין מבצע 1+1 יתעדכן בסיכום העסקה לאחר "המעבר לקופה"
--}}
@if ($cart->count() > 0) @foreach ($cart->getItems() as $key => $item) @php $image = 'http://via.placeholder.com/640x360'; if (!is_null($item->associatedModel) && !is_null($item->model)) { $image = $item->model->image_url; } @endphp
{{ $item->price }}

{{ $item->name }}

הוסף
{{ $item->qty }}
הפחת
{{ ($item->price*$item->qty) }} ₪
@endforeach @else
סל הקניות שלך ריק
@endif
@if ($cart->count() > 0)
סכום ביניים: {{ $cart->getTotal() }}
+ צבירה של {{ $cart->calculatePoints() }} נקודות בקניה זו
@if($cart->amoutToFreeDelivery() > 0)
עוד {{ $cart->amoutToFreeDelivery() }}> ואתם זכאים למשלוח חינם עד הבית!
@endif @if($cart->amoutToFreeDelivery() <= 0)
ברכות! אתם זכאים למשלוח חינם עד הבית!
@endif
@if ( Auth::check() ) מעבר לקופה > @else מעבר לקופה > @endif
המשך קניה באתר
@endif