@extends('layouts.admin') @section('header', 'Project Management') @section('content')
Manage and track all your projects
Project Name | Client | Status | Manager | Deadline | Actions |
---|---|---|---|---|---|
{{ $project->client->name ?? 'No Client Assigned' }}
|
@if($project->status === 'active')
Active
@elseif($project->status === 'pending')
Pending
@elseif($project->status === 'completed')
Completed
@elseif($project->status === 'on_hold')
On Hold
@else
{{ $project->status_label }}
@endif
|
{{ $project->manager->name ?? 'No Manager Assigned' }}
|
@if($project->deadline)
{{ $project->deadline->format('M d, Y') }}
@if($project->deadline->isPast())
Overdue
@elseif($project->deadline->diffInDays() <= 7)
Due soon
@endif
@else
No deadline set
@endif
|
||