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

History for Application #{{ $application->application_no ?? $application->id }}

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

No history available for this application.

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