@extends('layouts.app') @section('title','Deposit') @section('content')
Add funds

Deposit with clarity.

Select a method, verify the network, and submit your transfer reference.

New crypto deposit

@csrf
@foreach($methods as $method)
{{ $method->name }}{{ $method->type }}
@if($method->deposit_address)

{{ $method->network }} address

{{ $method->deposit_address }}

@endif

Min {{ $method->minimum }} · Fee {{ $method->fee_fixed }} + {{ $method->fee_percent }}%

{{ $method->instructions }}

@endforeach
@if($methods->where('type','gateway')->isNotEmpty())

Pay with a gateway

@foreach($methods->where('type','gateway') as $method)
@csrf
{{ $method->name }}Secure hosted checkout
@endforeach
@endif

Deposit history

@forelse($deposits as $deposit)@empty@endforelse
ReferenceAssetAmountStatusDate
{{ $deposit->reference }}{{ $deposit->asset->symbol }}{{ $deposit->amount }}{{ $deposit->created_at->format('M j, Y H:i') }}
No deposits yet.
@endsection