Оформление заказа
@foreach($cartItems as $item)
@if($item->product->discount_price)
@endforeach
{{ $item->product->name }}
В наличии {{ $item->product->quantity }} шт.
Артикул системы: {{ $item->product->sku }}
Бренд: {{ $item->product->brand }}
{{ number_format($item->product->discount_price * $item->quantity, 2, ',', '') }} ₽
@else{{ number_format($item->product->price * $item->quantity, 2, ',', '') }} ₽
@endifТовары({{ $cartItems->sum('quantity') }})
{{ number_format($totalPrice, 2, ',', '') }} ₽
Скидка на товары
{{ number_format($totalDiscount, 2, ',', '') }} ₽
Тип доставки
Самовывоз
Доставка
0 ₽
Итого
{{ number_format($totalPrice, 2, ',', '') }} ₽