@extends('layouts.contentLayoutMaster') @section('title', 'Your Cart') @section('content')

Lead Order

Add more
@if (empty($cart))

No items in cart.

@else
@foreach ($cart as $line) @endforeach
Lead Type Age State County Qty Unit Total
{{ strtoupper(str_replace('_', ' ', $line['lead_type'])) }} {{ $line['age_bucket'] }} {{ $line['state'] }} {{ $line['county'] }} {{ $line['quantity'] }} ${{ number_format($line['unit_price'], 2) }} ${{ number_format($line['line_total'], 2) }}
Subtotal ${{ number_format($subtotal, 2) }}
@csrf
@csrf
@endif
@endsection