@extends('layout.master') @push('plugin-styles') @endpush @section('content')
Ensure compliance and maintain equipment safety by adhering to the following inspection schedules.
| Crane Name | Crane Equipment Name | Inspection Type | Location | Last Inspection Date | Next Inspection Due | Status | Countdown | Technician Name |
|---|---|---|---|---|---|---|---|---|
| {{ $inspectionDeadline->crane->company_name ?? 'No Crane Assigned' }}{{ $inspectionDeadline->crane->serial_no ?? 'No Crane Assigned' }} | {{ $inspectionDeadline->equipment->name }} | {{ $inspectionDeadline->inspection_type }} | {{ $inspectionDeadline->location }} | {{ $inspectionDeadline->last_inspection_date }} | {{ $inspectionDeadline->next_inspection_due }} | @php $daysLeft = \Carbon\Carbon::parse($inspectionDeadline->next_inspection_due)->diffInDays(\Carbon\Carbon::now()); @endphp @if($daysLeft < 0) Overdue @elseif($daysLeft <= 7) Due Soon @else On Track @endif | {{ $daysLeft >= 0 ? $daysLeft . ' days left' : abs($daysLeft) . ' days overdue' }} | {{ $inspectionDeadline->technician_name }} |