@extends('layouts.app') @section('title','Projects') @section('page-title','Projects') @section('content')
@foreach($projects as $project)
{{ ucfirst($project->status) }} {{ $project->code }}
{{ $project->name }}
{{ $project->location }}
BudgetGH₵ {{ number_format($project->budget,2) }}
SpentGH₵ {{ number_format($project->total_spent,2) }}
@endforeach
@endsection