@extends('layouts.sales.sales') @section('title', 'Sale Dashboard') @section('page', 'Dashboard') @section('content')
| Quote ID | Client Name | Project Location | Project Type | Quote Date | Estimate Cost |
|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $q->name }} | {{ $q->location ?? '—' }} | {{ $q->projectType->name ?? 'N/A' }} | {{ $q->created_at ? $q->created_at->format('d/m/Y') : '—' }} | {{ $q->estimate_cost}} |