@extends('layouts.admin') @section('header') Project Details @endsection @section('content')

{{ $project->name }}

Edit Back

Basic Information

{{ $project->status_label }}
{{ $project->client->name ?? 'N/A' }}
{{ $project->manager->name ?? 'Unassigned' }}

Timeline & Budget

{{ $project->start_date->format('M d, Y') }}
{{ $project->deadline ? $project->deadline->format('M d, Y') : 'No deadline set' }}
{{ $project->budget ? '$'.number_format($project->budget, 2) : 'Not specified' }}

System Information

{{ $project->created_at->format('M d, Y \a\t h:i A') }}
{{ $project->updated_at->format('M d, Y \a\t h:i A') }}
{{ $project->id }}

Description

{{ $project->description ?? 'No description provided.' }}

Notes

{{ $project->notes ?? 'No notes added.' }}

Danger Zone

@csrf @method('DELETE')
@endsection