@extends('layouts.app') @section('title', 'إيصال العملية') @section('content')
| المستخدم | {{ $user->full_name }} |
|---|---|
| المحفظة | {{ $wallet->name }} |
| نوع العملية | {{ $type === 'deposit' ? 'إيداع' : 'سحب' }} |
| المبلغ | {{ number_format($amount, 2) }} {{ $wallet->currency && $wallet->currency !== 'DEFAULT' ? $wallet->currency : 'د.ل' }} |
| الرصيد بعد العملية | {{ number_format((float) $balanceAfter, 2) }} {{ $wallet->currency && $wallet->currency !== 'DEFAULT' ? $wallet->currency : 'د.ل' }} |
| رقم الهاتف | {{ $user->contact_no ?? '-' }} |
| الملاحظة | {{ $note ?? '-' }} |
| تاريخ العملية | {{ $date }} |
| تمت بواسطة | {{ auth()->user()->full_name }} |