Billeteras @if (session()->has('message-danger'))
{{ session('message-danger') }}
@endif @livewire('components.page-filters', ['meta' => $meta, 'filters' => 'id|nombre|apellido|documento', 'filtroFecha' => 'no'])
#
Nombre
Documento
Moneda
Balance
Descubierto
Opciones
@if (session()->has('message-success'))
{{ session('message-success') }}
@endif @if (!$operaciones || $operaciones == null) @else @foreach ($operaciones as $operacion)
{{ $operacion['id'] }}
{{ $operacion['id'] }} {{ $operacion['entity']['first_name'] }}
{{ $operacion['entity']['document_nice']}}
{{ $operacion['currency']['short_code']}}
{{ $operacion['balance_nice'] }}
{{ $operacion['overdraft_limit_nice'] }}
@endforeach @endif @livewire('components.wallet-movements') @livewire('components.crear-transferencia-bancaria')