@if($actionHistories->count() > 0)
| # | {{ __('admin.action') }} | {{ __('admin.status') }} | {{ __('admin.source') }} | {{ __('admin.actor') }} | {{ __('admin.ride_number') }} | {{ __('admin.operation_id') }} | {{ __('admin.failure_message') }} | {{ __('admin.occurred_at') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $history->id }} | {{ $actionLabel === $actionLabelKey ? ucfirst(str_replace('_', ' ', $history->action)) : $actionLabel }} | {{ $statusLabel === $statusLabelKey ? ucfirst($history->status) : $statusLabel }} | {{ $sourceLabel === $sourceLabelKey ? ucfirst($history->source) : $sourceLabel }} | {{ $history->admin?->name ?? $history->client?->name ?? $history->provider?->name ?? __('admin.system') }} | @if($history->ride_id) #{{ $history->ride_id }} @else — @endif | {{ $history->operation_id ?? '—' }} | {{ $history->failure_message ?? '—' }} | {{ $history->occurred_at?->format('Y-m-d H:i:s') ?? '—' }} |
{{ __('admin.there_are_no_matches_matching') }}
@endif