@extends('shop.layout') @section('title', 'Coș') @section('content') @php $currency = $tenant->settings['currency'] ?? 'MDL'; @endphp

Coșul meu

@if (empty($cart))

Coșul e gol.

Vezi catalogul
@else
@csrf
@foreach ($cart as $id => $item) @endforeach
PiesăPrețCant.Total
{{ $item['name'] }} @if (!empty($item['article']))
{{ $item['article'] }}
@endif
{{ number_format($item['price'], 2) }} {{ $currency }} {{ number_format($item['price'] * $item['qty'], 2) }} {{ $currency }}
Subtotal: {{ number_format($subtotal, 2) }} {{ $currency }}
Finalizează comanda →
@endif @endsection