@extends('layouts.admin') @section('title','Review remittance') @section('heading','Review cash remittance') @section('content')
Submitted{{ $remittance->currency }} {{ number_format($remittance->submitted_amount,2) }}
Driver{{ $remittance->driver->user->name }}
Status{{ str($remittance->status)->headline() }}

Submission evidence

Method: {{ str($remittance->method)->headline() }} · Reference: {{ $remittance->reference ?: 'Not supplied' }}

{{ $remittance->driver_note ?: 'No driver note.' }}

@if($remittance->proof_mime)Download private proof@endif
@if($remittance->status==='submitted')

Record review

@csrf
@endif

Event history

@forelse($remittance->events as $event)

{{ str($event->event)->headline() }} · {{ $event->created_at->format('d M Y H:i:s') }}

@empty

No events.

@endforelse
@endsection