@extends('dashboard.user.layouts.master') @section('content')

{{ $title }}

@include('dashboard.user.layouts.components.breadcrumbs')
@include('dashboard.user.components.menu')

Deposit Via:

Deposit History

@foreach ($deposits as $index => $deposit) @endforeach
# Reference ID Amount Proof Method Status Action
{{ $index + 1 }} {{ $deposit->reference_id }} {{ currency($deposit->user->currency) }}{{ formatAmount($deposit->amount) }} @if ($deposit->proof) View Proof @else N/A @endif {{ ucfirst($deposit->method) }} @if ($deposit->status) Confirmed @else Pending @endif
@endsection