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

Express checkout

OR

Contact

Sign in

Delivery

Shipping method

Enter your shipping address to view available shipping methods.

Payment

All transactions are secure and encrypted.
@php $subtotal = 0; @endphp @foreach($cart as $item) @php $subtotal += (float)str_replace(',', '', $item['price']) * $item['quantity']; $images = []; if (!empty($item['image'])) { $decoded = json_decode($item['image'], true); if (is_array($decoded)) { $images = $decoded; } else { $images = [$item['image']]; } } $firstImg = $images[0] ?? 'default-placeholder.png'; $imgSrc = str_starts_with($firstImg, 'http') ? $firstImg : asset('assets/images/product/' . trim($firstImg)); @endphp @endforeach
@endsection