@extends('layouts.app') @section('title', 'إدارة الاستلام') @push('styles') @endpush @section('content')
| # | التاريخ | البيان | اسم الموظف | المبلغ الكلي | المدفوع | المتبقي | النوع | الجهة | الإجراءات |
|---|---|---|---|---|---|---|---|---|---|
| {{ $receipt->id }} | {{ $receipt->receipt_date->format('Y-m-d') }} | {{ Str::limit($receipt->description, 30) }} | {{ $receipt->employee_name }} | {{ number_format($receipt->total_amount, 2) }} | {{ number_format($receipt->paid_amount, 2) }} | @if($receipt->remaining_amount > 0) {{ number_format($receipt->remaining_amount, 2) }} @else مكتمل @endif | {{ $receipt->receipt_type ?? '-' }} | {{ $receipt->receipt_source ?? '-' }} |