@extends ('layouts.in') @section ('body') @if ($vehicles->isEmpty())
{{ __('dashboard-index.vehicle-create') }}
@elseif ($devices->isEmpty())
{{ __('dashboard-index.device-create') }}
@else @each ('domains.alarm-notification.molecules.alert', $alarm_notifications->whereNull('closed_at'), 'row')
@if ($vehicles->count() > 1)
@endif @if ($devices->count() > 1)
@endif @if ($trips->isNotEmpty())
@if ($trip_previous_id) @icon('chevrons-left', 'w-4 h-4') @else @icon('chevrons-left', 'w-4 h-4') @endif @if ($trip_next_id) @icon('chevrons-right', 'w-4 h-4') @else @icon('chevrons-right', 'w-4 h-4') @endif
@endif
@if ($trip) @else
{{ __('dashboard-index.trip-wating') }}
@endif @endif @stop