@include('admin.header') @section('title', 'Payment Allocation Details') @section('actions') Back to Allocations Edit @endsection
Allocation Details
Reference Number {{ $paymentAllocation->reference_number }}
Advance Payment {{ $paymentAllocation->advancePayment->reference_number }}
Buyer {{ $paymentAllocation->advancePayment->buyer->company_name }}
Factory {{ $paymentAllocation->factory->name }}
Order Confirmation {{ $paymentAllocation->orderConfirmation->order_number }}
Allocation Date {{ $paymentAllocation->allocation_date->format('M d, Y') }}
Amount ${{ number_format($paymentAllocation->amount, 2) }}
Created By {{ $paymentAllocation->creator->name }}
{{ $paymentAllocation->purpose }}
@if($paymentAllocation->remarks)
{{ $paymentAllocation->remarks }}
@endif
Related Information
Advance Payment Details
  • Amount: ${{ number_format($paymentAllocation->advancePayment->amount, 2) }}
  • Payment Date: {{ $paymentAllocation->advancePayment->payment_date->format('M d, Y') }}
  • Method: {{ strtoupper($paymentAllocation->advancePayment->payment_method) }}
  • Remaining: ${{ number_format($paymentAllocation->advancePayment->remaining_amount, 2) }}

Factory Details
  • Name: {{ $paymentAllocation->factory->name }}
  • Location: {{ $paymentAllocation->factory->location }}
  • Contact: {{ $paymentAllocation->factory->contact_person }}
  • Email: {{ $paymentAllocation->factory->email }}
Timeline
Created
{{ $paymentAllocation->created_at->format('M d, Y H:i') }}
by {{ $paymentAllocation->creator->name }}
Last Updated
{{ $paymentAllocation->updated_at->format('M d, Y H:i') }}
@include('admin.footer')