@extends('layouts.admin') @section('title', $payment->payment_number) @section('page_title', 'تفاصيل الدفعة') @section('content')
| {{ __('Customer') }} | {{ $payment->customer?->name }} |
|---|---|
| {{ __('Invoice') }} | @if($payment->invoice){{ $payment->invoice->invoice_number }} @else دفعة بدون ربط بفاتورة @endif |
| التاريخ | {{ $payment->payment_date?->format('d/m/Y') }} |
| المبلغ | {{ number_format((float) $payment->amount, 2) }} |
| الطريقة | {{ $payment->method_label }} |
| المرجع | {{ $payment->reference ?? '-' }} |
| المُحصّل | {{ $payment->user?->name ?? '-' }} |
| {{ __('Notes') }} | {{ $payment->notes ?? '-' }} |