@extends('layouts.app') @section('title', 'إدارة الاستلام') @push('styles') @endpush @section('content')
إدارة الاستلام
{{ $stats['total_count'] }}
سجل
{{ number_format($stats['total_amount'], 0) }}
المبلغ
{{ number_format($stats['total_paid'], 0) }}
مدفوع
{{ number_format($stats['total_remaining'], 0) }}
متبقي
@if(auth()->check() && auth()->user()->hasPermission(\App\Models\Permission::CREATE_RECEIPTS)) إضافة استيراد @endif
البحث والتصفية
إلى
سجلات الاستلام
{{ $receipts->total() }} سجل
@if($receipts->count() > 0)
@foreach($receipts as $receipt) @endforeach
# التاريخ البيان اسم الموظف المبلغ الكلي المدفوع المتبقي النوع الجهة الإجراءات
{{ $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 ?? '-' }}
@csrf @method('DELETE')
{{ $receipts->appends(request()->query())->links() }}
@else
لا توجد سجلات استلام

لم يتم العثور على أي سجلات مطابقة للبحث

إضافة استلام جديد
@endif
@push('scripts') @endpush @endsection