@extends('layouts.sidebar') @section('title', 'Nomadic - Contractor Reliability Detail') @section('content')
| Booking ID | Role | Resource | Status | Response Time | Booking Date | Created |
|---|---|---|---|---|---|---|
| {{ $conf->booking_id }} | {{ ucwords(str_replace('_', ' ', $conf->role)) }} | {{ ucwords(str_replace('_', ' ', $conf->resource_type)) }} | @if($conf->status === 'confirmed') Confirmed @elseif($conf->status === 'declined') Declined @else Pending @endif | @if($conf->responded_at) {{ \Carbon\Carbon::parse($conf->created_at)->diffInMinutes(\Carbon\Carbon::parse($conf->responded_at)) }} min @else - @endif | {{ $bk ? $bk->start_date : '-' }} | {{ \Carbon\Carbon::parse($conf->created_at)->format('M d, Y H:i') }} |
| No confirmation history found. | ||||||