{{-- currencies tab --}}

All Cryptocurrencies

Refresh Rates
{{-- Crypto Sales Tab --}}
@can('manage_crypto_sell_orders')

All Sale Orders

{{-- currencies table --}}
@foreach ($saleOrders as $order) @endforeach
User Name User email Crypto Currency Amount in NGN Amount in USD Amount in Crypto Status Actions
{{$order->user->name}} {{$order->user->email}} {{$order->crypto_name}} {{formatNumber($order->amount_in_naira)}} {{formatNumber($order->amount_in_usd)}} {{$order->amount_in_crypto}} {{$order->status}} @if ($order->status == 'pending')
View

Sale Order Details

@if ($order->screenshot) @endif
User Name {{$order->user->name}}
User Email {{$order->user->email}}
Crypto Currency {{$order->crypto_name}}
Amount in NGN {{formatNumber($order->amount_in_naira)}}
Amount in USD {{formatNumber($order->amount_in_usd)}}
Amount in Crypto {{$order->amount_in_crypto}}
Status {{$order->status}}
Transaction Details
Wallet Address {{$order->wallet_address}}
Transaction ID {{$order->transaction_id}}
Transaction Date {{$order->created_at}}
Screenshot View sceenshot
Reject Approve
{{ __('Submit') }}
@endif
@endcan
{{-- Crypto Buying Orders --}}
@can('manage_crypto_buy_orders')

All Pending Crypto Orders

{{-- currencies table --}}
@foreach ($buyOrders as $order) @endforeach
User Name User email Crypto Currency Amount in NGN Amount in USD Amount in Crypto Status Actions
{{$order->user->name}} {{$order->user->email}} {{$order->crypto_name}} {{formatNumber($order->amount_in_naira)}} {{formatNumber($order->amount_in_usd)}} {{rtrim(rtrim(number_format($order->amount_in_crypto, 15), '0'), '.')}} {{$order->status}} @if ($order->status == 'pending')
View

Sale Order Details

User Name {{$order->user->name}}
User Email {{$order->user->email}}
Crypto Currency {{$order->crypto_name}}
Amount in NGN {{formatNumber($order->amount_in_naira)}}
Amount in USD {{formatNumber($order->amount_in_usd)}}
Amount in Crypto {{rtrim(rtrim(number_format($order->amount_in_crypto, 15), '0'), '.')}}
Status {{$order->status}}
Reject Approve
{{ __('Submit') }}
@endif
@endcan
@push('scripts') @endpush