@extends('Frontend.Reports.partials.layout') @section('content') @foreach ($report->getItems() as $item)
@include('Frontend.Reports.partials.item_heading') @if (isset($item['error'])) @include('Frontend.Reports.partials.item_empty') @else @if ( ! empty($item['table']))
@foreach ($item['table']['rows'] as $row) @endforeach
{{ trans('front.geofences') }} {{ trans('front.start') }} {{ trans('front.end') }} {{ trans('front.duration') }} {{ trans('front.top_speed') }} {{ trans('front.average_speed') }} {{ trans('front.position') }}
{{ $row['geofences_in'] }} {{ $row['start_at'] }} {{ $row['end_at'] }} {{ $row['duration'] }} {{ $row['speed_max'] }} {{ $row['speed_avg'] }} {!! $row['location'] !!}
@endif @include('Frontend.Reports.partials.item_total') @endif
@endforeach @stop