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

{{ $title }}

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