@extends('layouts.app') @section('title', 'Projects') @section('content')

Projects - {{ $customer->company_name }}

@if($projects->isEmpty())

No projects yet. Start creating one now.

@endif @if(session('success'))
{{ session('success') }}
@endif @foreach($projects as $project) @php $currentDate = new \DateTime(date('Y-m-d')); $upcomingDate = new \DateTime($project->end_date); $interval = date_diff($currentDate, $upcomingDate); $daysDifference = abs($interval->days); $isPast = $upcomingDate < $currentDate; @endphp
{{ $project->status }}
@if(!$isPast) {{ $daysDifference }} {{ $daysDifference==1 ? 'day':'days' }} left @else {{ $daysDifference }} {{ $daysDifference==1 ? 'day':'days' }} ago @endif
{{$project->type}}
{{ $project->company_name }} Project ID: WG-{{str_pad($project->id, 4, '0', STR_PAD_LEFT);}}
{{ date('M d, Y', strtotime($project->created_at)) }}
@endforeach
@endsection