@extends('layouts.muladash') @section('title', $title) @section('content') @if ($t->type == 'Deposit')

Deposit Details

{{ $t->wallet->currency->name }}

{{ number_format($amountInUsd, 2, '.', ',') }} $

You topped up your {{ $settings->site_name }} {{ $t->wallet->currency->name }} Account

Amount (NGN)

NGN{{ number_format($t->amount_ngn, 2, '.', ',') }}

Transaction Hash

{{ Str::substr($t->hash ?? 'N/A', 0, 9) . '.......' . Str::substr($t->hash ?? 'N/A', -9) }}

From

{{ Str::substr($t->from_address ?? 'N/A', 0, 12) . '.......' . Str::substr($t->from_address ?? 'N/A', -12) }}

Date

{{ \Carbon\Carbon::parse($t->created_at)->toDayDateTimeString() }}

your Naira equivalent has been confirmed on the blockchain and paid to your Account

@if ($t->payment_mode = 'BTC') Explore TXID @elseif ($t->payment_mode = 'ETH') Explore TXID @elseif ($t->payment_mode = 'USDT.TRC20') Explore TXID @else Explore TXID @endif
@else

Withdrawal Details

{{ $t->wallet->currency->name }}

{{ number_format($amountInUsd, 2, '.', ',') }} $

You got paid to your Bank Account

Amount (NGN)

NGN{{ number_format($t->amount_ngn, 2, '.', ',') }}

Transaction ID

{{ $t->txn_id }}

To

{{ $t->withdrawal_to }}

Date

{{ \Carbon\Carbon::parse($t->created_at)->toDayDateTimeString() }}

If you did not receive your payment, kindly click the button to contact support

Contact support
@endif @endsection