{{--
--}}
@php
$diff_timer = 0;
$diff_timer_ref = 0;
@endphp
@foreach ($case->getBookingSlot as $time_slot)
@if (date('H:i:s', strtotime($time_slot->getSlot->start_time)) <= date('H:i:s') and date('H:i:s', strtotime($time_slot->getSlot->end_time)) > date('H:i:s'))
@php
$diff = strtotime(date('H:i:s', strtotime($time_slot->getSlot->end_time)))-strtotime(date('H:i:s'));
$diff_timer = $diff*1000;
@endphp
@else
@php
// dd($time_slot->getSlot->start_time);
$diff = strtotime(date('H:i:s', strtotime($time_slot->getSlot->start_time)))-strtotime(date('H:i:s'));
$diff_timer_ref = $diff*1000;
@endphp
@endif
@endforeach