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

Crypto Deposit System

@csrf

My Deposits

@foreach($deposits as $d) @endforeach
IDAmountCurrencyStatusDate
#{{ $d->id }}${{ number_format($d->amount, 2) }}{{ $d->currency }}{{ ucfirst($d->status) }}{{ $d->created_at }}
{{ $deposits->links() }}
@endsection