@extends('layouts.shop') @section('content') @include('partials.breadcrumbs', [ 'items' => [ ['label' => __('Главная'), 'url' => route('home')], ['label' => __('Корзина'), 'url' => null], ], ])

{{ __('Товары в корзине') }}

@if ($items->isEmpty())

{{ __('Корзина пустая') }}

{{ __('Добавьте товары из каталога, чтобы оформить заказ.') }}

{{ __('Перейти в каталог') }}
@else
@foreach ($items as $item) @php($product = $item['product'])

{{ $product->name }}

@if ($product->short_description)

{{ $product->short_description }}

@endif
@csrf @method('patch')
{{ number_format($item['subtotal'], 0, '.', ' ') }} {{ config('shop.currency_symbol', '₽') }}
@csrf @method('delete')
@endforeach
@endif
@endsection