@extends('layouts.app') @section('content')
Manage your construction projects
| Name | Status | Actions | ||||
|---|---|---|---|---|---|---|
|
{{ $project->name }}
{{ $project->location ?? 'N/A' }}
{{ $project->formatted_budget }} / {{ $project->formatted_total_expenses }}
|
@php $statusColors = [ 'completed' => 'bg-success text-white', 'in_progress' => 'bg-primary text-white', 'on_hold' => 'bg-warning text-gray-800', 'planned' => 'bg-gray-500 text-white' ]; $statusColor = $statusColors[$project->status] ?? 'bg-gray-500 text-white'; @endphp {{ ucfirst(str_replace('_', ' ', $project->status)) }} | |||||
| No projects found. | ||||||