@extends('layouts.admin.app') @section('page-nav-title')
{{ __('create and view all Wallets') }}
#{{ __('ID') }} | {{ __('Type Transaction') }} | {{ __('Movement') }} | {{ __('Value') }} | @if (isset($request)){{ __('Balanced') }} | @endif{{ __('User') }} | {{ __('Created at') }} | |
---|---|---|---|---|---|---|---|
{{ $wallets->id }} | @if ($wallets->type_wallet_id == 2 || $wallets->type_wallet_id == 5 || $wallets->type_wallet_id == 8) {{ $wallets->typeWallet->name . ' ' . $wallets->type_id }} @else {{ $wallets->typeWallet->name }} @endif | @if ($wallets->in_out == -1)
المستخدم قبض من التطبيق (المستخدم قبض - التطبيق دفع) |
@elseif($wallets->in_out == 1)
المستخدم دفع للتطبيق (المستخدم دفع - التطبيق قبض) |
@endif
{{ number_format($wallets->value, 2) . ' IQD' }} | @if (isset($request)){{ number_format($wallets->balance, 2) . ' IQD' }} | @endif{{ $wallets->user->first_name }} | {{ date('d/m/Y h:i A', strtotime($wallets->created_at)) }} |
{{ __('Total') }} | {{ number_format($balanced, 2) . ' RS' }} |