@extends('layouts.app') @section('content')

سجل السندات المالية (الواصلات)

إصدار سند جديد

إجمالي المقبوضات

{{ number_format($totals['deposits'], 2) }} د.ل

إجمالي المصروفات

{{ number_format($totals['withdrawals'], 2) }} د.ل

@php $netColor = $totals['net_flow'] >= 0 ? '#17a2b8' : '#dc3545'; $netTextClass = $totals['net_flow'] >= 0 ? 'text-info' : 'text-danger'; @endphp

صافي الحركة النقدية

{{ number_format($totals['net_flow'], 2) }} د.ل

إجمالي السندات

{{ number_format($totals['count']) }}

تصفية السندات
مسح
@forelse($receipts as $receipt) @empty @endforelse
رقم السند المستخدم / المحفظة نوع السند المبلغ (د.ل) الرصيد المتبقي ملاحظة / بيان تاريخ الإصدار إجراءات
#{{ $receipt->id }}
@php $holderName = $receipt->wallet->user->full_name ?? 'غير متوفر'; $userId = $receipt->wallet->holder_id ?? null; @endphp @if($userId) {{ $holderName }} @else {{ $holderName }} @endif
@if($receipt->type === 'deposit') سند قبض (إيداع) @elseif($receipt->type === 'withdraw') سند صرف (سحب) @else - @endif @php $isDeposit = $receipt->type === 'deposit'; $color = $isDeposit ? 'text-success' : 'text-danger'; @endphp {{ number_format($receipt->amount, 2) }} {{ number_format($receipt->balance_after, 2) }} @if($receipt->note) {{ $receipt->note }} @else - @endif
{{ $receipt->transaction_date ? $receipt->transaction_date->format('Y-m-d') : '-' }} {{ $receipt->transaction_date ? $receipt->transaction_date->format('H:i') : '' }}
طباعة
لا توجد سندات

لم يتم العثور على أي سندات مالية تطابق بحثك.

@endsection