@extends('layouts.site') @section('title', 'My Quote Cart — pcfy.in') @section('screen_label', 'Cart') @section('page_css') @endsection @section('content')
Home › Quote Cart

Your Quote Cart

Review your items, then submit a quote request — we'll respond within 24 hours.

@if(session('success'))
✓ {{ session('success') }}
@endif @if(session('cart_added'))
✓ {{ session('cart_added') }}
@endif @if($items->isEmpty())
Your quote cart is empty

Browse our products and add items you're interested in.

Browse products →
@else
{{ $items->count() }} item{{ $items->count() > 1 ? 's' : '' }}
@csrf @method('DELETE')
@foreach($items as $key => $item)
@if(!empty($item['thumb'])) {{ $item['product_name'] }} @else @endif
Grade {{ $item['grade'] }} @if(!empty($item['sku'])) · SKU: {{ $item['sku'] }} @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
@endforeach
Ready to request a quote?
Fill in your details and we'll respond within 24 hours with pricing.
Fill in your details and we'll respond with pricing within 24 hours. GST invoice included on all orders.
🛒 Request a Quote →
Or call us: +91 98765 43210
@endif
@endsection