@extends('layouts.dashboardnew') @section('content') {{-- ===================== HEADER ===================== --}}
Consulta todos los movimientos de ingresos, retiros y balances de tu billetera.
| # | Usuario | Descripción | Ingreso | Retiro | Balance | Descuento | Fecha |
|---|---|---|---|---|---|---|---|
| #{{ $bille->id }} | {{-- Usuario con avatar --}}
{{ strtoupper(substr($bille->user->display_name, 0, 2)) }}
{{ $bille->user->display_name }}
|
{{-- Descripción --}}
{{ $bille->descripcion }} | {{-- Ingreso (débito) --}}@if($bille->debito > 0) @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->debito }} @else {{ $bille->debito }} {{$moneda->simbolo}} @endif @else — @endif | {{-- Retiro (crédito) --}}@if($bille->credito > 0) @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->credito }} @else {{ $bille->credito }} {{$moneda->simbolo}} @endif @else — @endif | {{-- Balance --}}@if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->balance }} @else {{ $bille->balance }} {{$moneda->simbolo}} @endif | {{-- Descuento --}}@if($bille->descuento > 0) - @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->descuento }} @else {{ $bille->descuento }} {{$moneda->simbolo}} @endif @else @if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $bille->descuento }} @else {{ $bille->descuento }} {{$moneda->simbolo}} @endif @endif | {{-- Fecha --}}{{ date('d-m-Y', strtotime($bille->created_at)) }} |