@extends('layout.index') @section('title', 'Vehicle Stoppage Report') @section('content') @php use Carbon\Carbon; @endphp Vehicle Stoppage Report @csrf Vehicle --All Vehicles-- @foreach($vehicle as $val) @php $selected = ''; @endphp @if($vehicle_id == $val->id) @php $selected ='selected'; @endphp @endif {{$val->vehicle_number }} @endforeach Time Intervals --All Times-- @foreach($aIntervals as $key => $aInterval) @php $selected = ''; @endphp @if($time_interval == $key) @php $selected ='selected'; @endphp @endif {{$aInterval['text'] }} @endforeach Date Search @if ($search) Clear @endif @if(sizeof($records)) Excel @endif Back Sr.No Date Vehicle Number Start Time Stop Time Stoppage Period No Record Found. @endsection