@extends('layouts.admin.base') @section('page-title') Wallets @endsection @section('content')
@include('admin.settings.layouts.sidebard')
@foreach ($wallets as $wallet) @endforeach
Cryptocurrency Wallet Name Wallet Address Received Date Added Status Action

{{ $wallet->cryptocurrency }}

{{ $wallet->name }}

{{ $wallet->address }}

{{ formatMoney($wallet->sum_recieved()) }}

{{ timeago($wallet->created_at) }}

{{ $wallet->status_data()->message }}
@endsection