@extends('layouts.logeado') @if (isset($filtro)) @section('sub_title', 'Movimientos. Filtro: ' . $filtro) @else @section('sub_title', 'Movimientos') @endif @section('sub_content')
@isset($filtro) @endisset

Exportar:

@forelse($transacciones as $transaccion) @empty @endforelse
ID Fecha Tipo movimiento Tipo recarga Valor Conductor Sucursal
@if (!empty($c1)) @else @endif @if (!empty($c3)) @else @endif
{{ $transaccion->id}} {{ $transaccion->fecha}} {{ $transaccion->tipo}} {{ $transaccion->tiporecarga}} ${{ number_format($transaccion->valor)}} @if ($transaccion->cuentac != null) {{$transaccion->cuentac->conductor->NUMERO_IDENTIFICACION}} @endif @if ($transaccion->sucursal != null) {{ $transaccion->sucursal->user->nombres}} @else CRM @endif
No hay datos
@if(method_exists($transacciones,'links')) {{ $transacciones->links() }} @endif
@endsection @section('script') @endsection