@extends('layouts.admin_layout') @section('content')

Deposit Request Info

Go to main website
View →

Basic Info

Name: {{ $deposit->user?->first_name }} {{ $deposit->user?->last_name }}

Username: {{ $deposit->user?->username }}

Deposit Info

Deposit Amount

${{ number_format($deposit->amount) }}

Status

@if($deposit->status == 0)

Pending...

@elseif($deposit->status == 1)

Approved

@elseif($deposit->status == 2)

Declined

@endif

Plan Type

{{ ucfirst($deposit->plan->type) }}

Plan

{{ $deposit->plan->name }}

Deposit Date

{{ date('M j Y', strtotime($deposit->created_at)) }}

Deposit Time

{{ date('h:i A', strtotime($deposit->created_at)) }}

Amount In Crypto

{{ $pay_info['deposit']['amount'].' '.$pay_info['payment']['pay_currency'] }}

Payment ID

{{$pay_info['payment']['payment_id']}}

Transfer Network

{{$pay_info['deposit']['network']}}

Email: {{ $deposit->user?->email }}

Occupation: {{ $deposit->user?->occupation }}

Country: {{ $deposit->user?->country }}

Mobile: {{ $deposit->user?->mobile }}

@endsection