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

{{ $title }}

@slot('header') {{ $title }} @endslot
@foreach ($wallets as $index => $wallet) @endforeach
# Name Symbol Balance Status Action
{{ $index + 1 }} {{ $wallet->name }} {{ $wallet->symbol }} {{ formatAmount($wallet->balance) }}{{ $wallet->symbol }} {{ $wallet->status->label() }} View Edit
@csrf @method('DELETE')
@endsection