@extends('layouts.dashboardnew') @section('content') @include('usuario.componentes.filtroPorFecha', ['ruta' => 'wallet-historial-fechas', 'form' => ''])
| # | Usuario | Descripcion | Ingreso | Retiro | Balance | Descuento | Fecha |
|---|---|---|---|---|---|---|---|
| {{ $bille->id }} | {{ $bille->usuario }} | {{ $bille->descripcion }} | @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->debito }} @else {{ $bille->debito }} {{$moneda->simbolo}} @endif | @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->credito }} @else {{ $bille->credito }} {{$moneda->simbolo}} @endif | @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->balance }} @else {{ $bille->balance }} {{$moneda->simbolo}} @endif | @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->descuento }} @else {{ $bille->descuento }} {{$moneda->simbolo}} @endif | {{ date('d-m-Y', strtotime($bille->created_at)) }} |