@extends('layouts.app') @section('title', 'Job Variants — ' . $job->job_number) @section('breadcrumb'){{ $job->job_number }} Variants@endsection @section('content') @if(session('success'))
{{ session('success') }}
{{ $job->job_number }} · {{ $job->contact?->full_name }}
Linked quote: {{ $variant->quote->quote_number }}
@endif{{ $variant->description }}
@endif {{-- Items table --}} @if($variant->items->count())| Description | Item Code | Unit | Qty | Retail Price | Total |
|---|---|---|---|---|---|
| {{ $item->description }} | {{ $item->item_code ?? '—' }} | {{ $item->unit ?? 'Each' }} | {{ number_format((float)$item->qty, 2) }} | ${{ number_format((float)$item->retail_price, 2) }} | ${{ number_format($item->retailTotal(), 2) }} |
| Subtotal (ex. GST) | ${{ number_format($variant->totalRetail(), 2) }} | ||||
Client notes:
{{ $variant->client_notes }}
Internal notes:
{{ $variant->internal_notes }}
Responded {{ $variant->responded_at->format('d M Y') }}
@endif @if($variant->stripe_payment_status)Stripe: {{ ucfirst(str_replace('_', ' ', $variant->stripe_payment_status)) }}
@endif @if($variant->status === 'pending')No variants yet for this job.