@extends('layouts.app') @section('title', 'Leads to Sales by Designer') @section('breadcrumb')Reports Leads by Designer@endsection @section('content')
Lead and sales breakdown grouped by assigned designer
| ID | Brand | Customer | Suburb | Showroom | Consultant | Lead Date | Sale Date | Value |
|---|---|---|---|---|---|---|---|---|
| {{ $job->job_number }} | {{ $job->lead?->brand?->name ?? '—' }} | {{ $job->contact?->full_name ?? '—' }} | {{ $job->site_suburb ?? '—' }} | {{ $job->lead?->showroom?->name ?? '—' }} | {{ $job->consultant?->name ?? '—' }} | {{ $job->lead?->enquiry_date?->format('d/m/Y') ?? '—' }} | {{ $job->sale_date?->format('d/m/Y') ?? '—' }} | ${{ number_format($job->job_value ?? 0) }} |
| Sum ({{ $jobs->count() }} records) | ${{ number_format($jobs->sum('job_value')) }} | |||||||