@extends('layouts.dashboardLayout') @section('title', 'Deposits') @section('content')

Withdrawals History

@if(count($withdraws) > 0) @foreach($withdraws as $withdraw) @endforeach @else @endif
Amount Status Date Chain
{{ $withdraw['amount'] }} {{ $withdraw['status'] }} {{ $withdraw['created_at'] }} {{ $withdraw['chain'] }}
No withdrawals found!
@endsection