@if (!isset($items[$device['id']]) || empty($items[$device['id']]))
| {{ rtl(trans('front.nothing_found_request'), $data) }} |
@else
@foreach ($device_items as $item)
@if (!is_array($item['end']))
| {{ $item['start'] }} |
{{ $item['end'] }} |
{{ $item['duration'] }} |
{{ rtl($item['name'], $data) }} |
{{ $item['position']['lat'] }} °, {{ $item['position']['lng'] }} °
@if(!empty($item['position']['address']))
- {{ rtl($item['position']['address'], $data) }}
@endif
|
@else
@foreach ($item['end'] as $subitem)
| {{ $subitem['start'] }} |
{{ $subitem['end'] }} |
{{ $subitem['duration'] }} |
{{ rtl($item['name'], $data) }} |
{{ $item['position']['lat'] }} °, {{ $item['position']['lng'] }} °
@if(!empty($item['position']['address']))
- {{ rtl($item['position']['address'], $data) }}
@endif
|
@endforeach
@endif
@endforeach
@endif