| Dimensions: {{ $inputs['length'] ?? 'N/A' }}m × {{ $inputs['width'] ?? 'N/A' }}m | Area: {{ number_format(($inputs['length'] ?? 0) * ($inputs['width'] ?? 0), 2) }} m² |
| Board: {{ $inputs['boardType'] ?? $inputs['board_type'] ?? 'N/A' }} | Direction: {{ $inputs['direction'] ?? 'lengthwise' }} |
| Description | Quantity | Unit Price | Total |
|---|---|---|---|
| {{ $board['name'] ?? $board['description'] ?? 'Decking Board' }} ({{ $board['length'] ?? '' }}mm) | {{ $board['quantity'] ?? 0 }} | £{{ number_format($board['priceEach'] ?? $board['price_each'] ?? 0, 2) }} | £{{ number_format($lineTotal, 2) }} |
| Board Total | £{{ number_format($boardTotal, 2) }} | ||
| Item | Quantity | Length | Cost |
|---|---|---|---|
| {{ $item['name'] ?? $item['description'] ?? 'Timber' }} | {{ $item['quantity'] ?? $item['qty'] ?? 0 }} | {{ $item['length'] ?? '' }}mm | £{{ number_format($item['cost'] ?? $item['total'] ?? 0, 2) }} |
| Timber Total | £{{ number_format($timberTotal, 2) }} | ||
| Item | Quantity | Cost |
|---|---|---|
| {{ $fixing['name'] ?? $fixing['description'] ?? 'Fixing' }} | {{ $fixing['quantity'] ?? $fixing['qty'] ?? 0 }} | £{{ number_format($fixing['cost'] ?? $fixing['total'] ?? 0, 2) }} |
| Fixings Total | £{{ number_format($fixingsTotal, 2) }} | |
| Description | Cost |
|---|---|
| Installation Labour | £{{ number_format($results['labour']['total'] ?? $results['labour']['cost'] ?? 0, 2) }} |
Inc. VAT: £{{ number_format($results['totalCostIncVat'] ?? $results['total_cost_inc_vat'] ?? 0, 2) }}
@endif