@extends('layouts.logeado') @if (isset($filtro)) @section('sub_title', 'Movimientos. Filtro: ' . $filtro) @else @section('sub_title', 'Movimientos') @endif @section('sub_content')
@isset($filtro) @endisset
@forelse($transacciones as $transaccion) @endif @empty @endforelse
Fecha Tipo movimiento Valor Conductor
@if (!empty($c1)) @else @endif @if (!empty($c3)) @else @endif
{{ $transaccion->fecha}} {{ $transaccion->tipo}} @if ($transaccion->tipo == "Recarga") @if ($transaccion->tiporecarga == "Egreso") ${{ number_format(-$transaccion->valor)}} @else ${{ number_format($transaccion->valor)}} @endif @else ${{ number_format($transaccion->valor)}} @if ($transaccion->cuentac != null) {{$transaccion->cuentac->conductor->NUMERO_IDENTIFICACION}} @endif
No hay datos
@if(method_exists($transacciones,'links')) {{ $transacciones->links() }} @endif
@endsection @section('script') @endsection