@extends('layouts.dashboardnew') @section('content')
@foreach ($wallets as $wallet) @endforeach
# Fecha Nivel Descripción Descuento Ingreso Retiro Balance
{{$wallet->id}} {{date('d-m-Y', strtotime($wallet->date))}} {{ $wallet->nivel }} {{$wallet->descripcion}} @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{$wallet->descuento}} @else {{$wallet->descuento}} {{$moneda->simbolo}} @endif @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{$wallet->debito}} @else {{$wallet->debito}} {{$moneda->simbolo}} @endif @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{$wallet->credito}} @else {{$wallet->credito}} {{$moneda->simbolo}} @endif @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{$wallet->balance}} @else {{$wallet->balance}} {{$moneda->simbolo}} @endif
@endsection @include('usuario.componentes.scripBotones')