{{ __('Reactivation Log Details') }}

Customer Information

Customer Name
{{ $log->customer->name }}
Customer ID
{{ $log->customer->customer_id }}
Vehicle
{{ $log->vehicle->plate_number }} - {{ $log->vehicle->make }} {{ $log->vehicle->model }}

Device Information

Device Model
{{ $log->device->model }}
IMEI Number
{{ $log->device->imei }}
SIM Number
{{ $log->sim_number }}
Network Provider
{{ $log->network_provider }}

Reactivation Details

Status
{{ $log->status_label }}
Assigned Technician
{{ $log->technician->name }}
Reason for Reactivation
{{ $log->reason }}
@if($log->status === 'successful' || $log->status === 'failed')
Resolution Notes
{{ $log->resolution_notes }}
Completion Time
{{ $log->completion_time->format('M d, Y H:i:s') }}
@endif
@if($log->attachments->count() > 0)

Attachments

    @foreach($log->attachments as $attachment)
  • {{ $attachment->original_name }} ({{ $attachment->size_for_humans }})
    Download
  • @endforeach
@endif

Timeline

  • Log Created

    {{ $log->created_at->format('M d, Y H:i:s') }}
  • @if($log->updated_at->gt($log->created_at))
  • Log Updated

    {{ $log->updated_at->format('M d, Y H:i:s') }}
  • @endif @if($log->completion_time)
  • Reactivation {{ $log->status === 'successful' ? 'Completed' : 'Failed' }}

    {{ $log->completion_time->format('M d, Y H:i:s') }}
  • @endif