@extends('company.layouts.app') @section('title', 'تفاصيل مديونية') @section('content')
| العميل | {{ $due->customer?->full_name ?? '-' }} |
|---|---|
| المرجع | {{ $due->dueable_label }} |
| الإجمالي | {{ number_format((float) $due->total_amount, 2) }} |
| المدفوع | {{ number_format((float) $due->paid_amount, 2) }} |
| المتبقي | {{ number_format((float) $due->remaining_amount, 2) }} |
| الحالة | {{ $due->due_status_label }} |