| Project Code: | {{ $project->code }} | Date Generated: | {{ now()->format('F d, Y') }} |
| Project Name: | {{ $project->name }} | Project Type: | {{ $project->project_type }} |
| Client Name: | {{ $project->client_name ?: 'N/A' }} | Location: | {{ $project->location ?: 'N/A' }} |
| Contract Value: | PHP {{ number_format($project->contract_value, 2) }} | Status: | {{ str_replace('_', ' ', $project->status->value) }} |
| # | Material Name | Unit | Est. Qty | Unit Cost | Total Cost |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $est->material->name }} | {{ $est->material->unit }} | {{ number_format($est->estimated_qty, 2) }} | ₱{{ number_format($est->unit_cost, 2) }} | ₱{{ number_format($est->estimated_qty * $est->unit_cost, 2) }} |
| No materials allocated. | |||||
| Subtotal Materials Cost | ₱{{ number_format($totals['materials'], 2) }} | ||||
| # | Target Task | Labor Record | Category | Rate / hr | Est. Hours | Total Cost |
|---|---|---|---|---|---|---|
| {{ $laborIdx++ }} | {{ $task->name }} | {{ $tl->labor->name }} | {{ $tl->labor->category }} | ₱{{ number_format($tl->labor->hourly_rate, 2) }} | {{ number_format($tl->estimated_hours, 1) }} | ₱{{ number_format($tl->estimated_hours * $tl->labor->hourly_rate, 2) }} |
| No labor trade allocations. | ||||||
| Subtotal Labor Cost | ₱{{ number_format($totals['labor'], 2) }} | |||||
| # | Target Task | Equipment / Tool | Owner | Rate / hr | Est. Hours | Total Cost |
|---|---|---|---|---|---|---|
| {{ $equipIdx++ }} | {{ $task->name }} | {{ $te->equipment->name }} | {{ $te->equipment->owner_name ?: 'Unspecified' }} | ₱{{ number_format($te->equipment->hourly_rate, 2) }} | {{ number_format($te->estimated_hours, 1) }} | ₱{{ number_format($te->estimated_hours * $te->equipment->hourly_rate, 2) }} |
| No equipment allocations. | ||||||
| Subtotal Equipment Cost | ₱{{ number_format($totals['equipment'], 2) }} | |||||