@extends('layouts.frontend') @section('content')

Моя корзина

@if(session('success'))
{{ session('success') }}
@endif @if(count($products) > 0) @php $total = 0; @endphp @foreach($products as $product) @php $quantity = $cart[$product->id]; $subtotal = $product->price * $quantity; $total += $subtotal; $images = json_decode($product->images, true); @endphp @endforeach
Товар Цена Количество Сумма
{{ $product->name }} {{ $product->name }} ${{ number_format($product->price, 2) }}
@csrf @method('PATCH')
{{ $quantity }}
@csrf @method('PATCH')
${{ number_format($subtotal, 2) }}
@csrf
Итого: ${{ number_format($total, 2) }}
Продолжить покупки Оформить заказ
@else
Ваша корзина пуста.
Перейти в магазин @endif
@endsection