@extends('components.admin-layout') @section('content')

{{ $title }}

{{-- search will enter here --}}
Image
Name
Symbol
{{--
Wallet Address
--}}
USD Price
Created At
Action
@foreach ($crypto_currencies as $wallet)
{{ ucwords($wallet->name) }}
{{ $wallet->symbol }}
${{ number_format($wallet->price, 6, '.', ',') }}
{{ date('d M,Y', strtotime($wallet->createdAt)) }}
{{-- modal --}}
@endforeach
@if ($crypto_currencies->count() < 1) @endif
{{ $crypto_currencies->links() }}
Multiple Wallets
Name
Wallet Address
Created At
Action
@foreach ($walletOptions as $wallet)
{{ ucwords($wallet->wallet_name) }}
{{ $wallet->network_address }}
{{ date('d M,Y', strtotime($wallet->createdAt)) }}
@endforeach
@if ($crypto_currencies->count() < 1) @endif
{{ $crypto_currencies->links() }}
@endsection