@extends('layouts.app') @section('title', 'طباعة السند') @section('content')
العودة للسجل

Turista App

بوابة الإدارة المالية

@if($type === 'deposit')

سند إيداع نقدي

Receipt Voucher @else

سند صرف نقدي

Payment Voucher @endif

No: #{{ str_pad(request()->route('id'), 5, '0', STR_PAD_LEFT) }}

Date: {{ date('Y-m-d', strtotime($date)) }}

{{ $type === 'deposit' ? 'استلمنا من السيد/ة' : 'يُصرف إلى السيد/ة' }} : {{ $user->full_name ?? 'غير متوفر' }}
المحفظة المستهدفة : محفظة رقم #{{ $wallet->id }} ({{ $wallet->name ?? 'غير متوفر' }})
وذلك عبارة عن : {{ $note ?? 'لا توجد ملاحظات إضافية' }}
المبلغ (Amount)

{{ number_format($amount, 2) }} {{ $wallet->currency && $wallet->currency !== 'DEFAULT' ? $wallet->currency : 'د.ل' }}

توقيع المستلم
Receiver Signature

توقيع الموظف
Employee Signature

{{ auth()->user()->full_name ?? 'النظام' }}

Printed on: {{ now()->format('Y-m-d H:i:s') }} | System Gen.

@endsection