/
home
/
sjslayjy
/
public_html
/
mosaram
/
resources
/
views
/
Upload File
HOME
@if(isset($inOutDetails)) <div class="row"> <div class="col-sm-12"> <table class="table table-bordered"> <thead> <tr style="background: cadetblue;"> <th>In Time</th> <th>In Time [Lat long] </th> <th>Out Time</th> <th>Out Time [Lat long]</th> <th>Stay Time</th> </tr> </thead> <tfoot> @foreach($inOutDetails as $inOutDetail) <tr> <td>{{date('d-M-Y h:i:s A',strtotime($inOutDetail->in_time))}}</td> <td>{{$inOutDetail->in_time_lat}} {{$inOutDetail->in_time_lng}}</td> <td>@if(!is_null($inOutDetail->out_time)) {{date('d-M-Y h:i:s A',strtotime($inOutDetail->out_time))}} @endif</td> <td>@if(!is_null($inOutDetail->out_time_lat)) {{$inOutDetail->out_time_lat}} {{$inOutDetail->out_time_lng}} @endif</td> <td>@if(!is_null($inOutDetail->hours_stay)) {{$inOutDetail->hours_stay}} @endif</td> </tr> @endforeach </tfoot> </table> </div> </div> @endif