@extends('layouts.app') @section('content')

Construction Projects

Manage your construction projects

Add Project
@forelse($projects as $project) @empty @endforelse
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)) }}
@csrf @method('DELETE')
No projects found.
@endsection