{{-- resources/views/accounting/advances/show.blade.php --}}
@extends('admin.admin_dashboard')
@section('admin')
@can('advance.edit')
Edit Payment
@endcan
| Advance Ref |
{{ $payment->advance->reference ?? '—' }} |
| Amount |
{{ number_format($payment->payment_amount, 2) }} |
| Date |
{{ \Carbon\Carbon::parse($payment->payment_date)->format('Y-m-d') }} |
| Method |
{{ $payment->payment_method }} |
| Payer |
{{ $payment->payer->name ?? '—' }} |
| Proof |
@if($payment->payment_proof)
View File
@else
—
@endif
|
@endsection