@extends('layouts.site')
@section('title', 'My Quote Cart — pcfy.in')
@section('screen_label', 'Cart')
@section('page_css')
@endsection
@section('content')
@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' : '' }}
@foreach($items as $key => $item)
@if(!empty($item['thumb']))
![{{ $item['product_name'] }}]({{ $item['thumb'] }})
@else
@endif
Grade {{ $item['grade'] }}
@if(!empty($item['sku'])) · SKU: {{ $item['sku'] }} @endif
@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