@php $currency = app(\App\Support\AppSettings::class)->get('currency', 'USD'); @endphp

Secure Signal checkout

Your cart

{{ $items->sum('quantity') }} {{ Str::plural('item', $items->sum('quantity')) }} ready for checkout

Secure payment 30 days warranty International shipment
@if ($items->isEmpty())

Your cart is empty

Browse the shop and add the medicines you need.

Start shopping
@else
@foreach ($items as $line) @php $product = $line['product']; $imageUrl = $product->image_path ? (Str::startsWith($product->image_path, ['http://', 'https://']) ? $product->image_path : asset($product->image_path)) : null; @endphp
@if ($imageUrl) {{ $product->brand_name }} @else @endif
{{ $product->brand_name }}

{{ $product->medicine?->generic_name }} {{ $product->medicine?->strength }}

{{ $currency }} {{ number_format((float) $product->price, 2) }} each

@csrf

{{ $currency }} {{ number_format($line['line_total'], 2) }}

@csrf
@endforeach
@endif