@extends('layouts.app') @section('title', 'Sales by Brand') @section('breadcrumb')Reports Sales by Brand@endsection @section('content')
Jobs with a sale date, grouped by brand — with subtotals and grand total
| File # | Sale Date | Customer | Suburb | Consultant | Designer | Showroom | Value |
|---|---|---|---|---|---|---|---|
| {{ $job->job_number }} | {{ $job->sale_date?->format('d/m/Y') ?? '—' }} | {{ $job->contact?->full_name ?? '—' }} | {{ $job->site_suburb ?? $job->contact?->suburb ?? '—' }} | {{ $job->consultant?->name ?? '—' }} | {{ $job->designer?->name ?? '—' }} | {{$job->contact?->leads->first()?->showroom?->name ?? '—' }} | ${{ number_format($job->job_value ?? 0) }} |