@extends('layouts.logeado') @if (isset($filtro)) @section('sub_title', 'Historial cajas. Filtro: ' . $filtro) @else @section('sub_title', 'Historial cajas') @endif @section('sub_content')
@forelse($cajas as $caja) @empty @endforelse
Fecha apertura Fecha cierre Total recargas Total ventas Usuario cierre
@if (!empty($c1)) @else @endif @if (!empty($c2)) @else @endif
{{ $caja->apertura}} {{ $caja->cierre}} {{ number_format($caja->totalrecargas) }} {{ number_format($caja->totalventas) }} {{ $caja->responsable }}
No hay datos
@if(method_exists($cajas,'links')) {{ $cajas->links() }} @endif
@endsection @section('script') @endsection