@extends('layouts.admin') @section('title', 'Application History') @section('content')

Application History — #{{ $application->application_number ?? $application->id }}

Back to Details
@if ($fileFlows->isEmpty())

No history available for this application.

@else @foreach ($fileFlows as $index => $flow)
Record #{{ $flow->id }} {{ $flow->created_at ? $flow->created_at->format('d M Y, h:i A') : '-' }}
File Flow Type ID {{ $flow->file_flow_type_id ?? 'N/A' }}
Application ID {{ $flow->application_id ?? 'N/A' }}
Initiator Seat ID {{ $flow->initiators_seat_id ?? 'N/A' }}
Receiver Seat ID {{ $flow->receivers_seat_id ?? 'N/A' }}
Initiator User ID {{ $flow->initiators_user_id ?? 'N/A' }}
Receiver User ID {{ $flow->receivers_user_id ?? 'N/A' }}
Application Status ID {{ $flow->application_status_id ?? 'N/A' }}
Recommendation ID {{ $flow->recommendation_id ?? 'N/A' }}
Amount Recommendation ID {{ $flow->amount_recommendation_id ?? 'N/A' }}
Actual Recommended Amount {{ $flow->actual_recommended_amount ?? 'N/A' }}
Comments {{ $flow->comments ?? '-' }}
Status {{ ucfirst($flow->status ?? 'N/A') }}
IP Address {{ $flow->ip_address ?? '-' }}
Last Updated {{ $flow->updated_at ? $flow->updated_at->format('d M Y, h:i A') : '-' }}
@endforeach @endif
@endsection