@extends('layouts.app') @section('content')
@include('layouts.alertas')

Modulo de Caja

Modulo de reporte de Caja.

@if (auth()->user()->profile == 'Administrador' || auth()->user()->profile == 'Supervisor' || auth()->user()->profile == 'Cajero')
@foreach($estadoCaja as $value) @if($value->estado == 'close') @php $estado = $value->estado; @endphp @else @endif @endforeach
@endif
@if (auth()->user()->profile == 'Administrador' || auth()->user()->profile == 'Supervisor' || auth()->user()->profile == 'Contable')

Reportes de Caja

Listado de todos los reportes de caja con detalles

@foreach($list as $value) @endforeach
# Cajero Fecha de Apertura Fecha de Cierre Monto de Inicio Monto de Cierre Estado Acciones
{{ $value->id }} {{ $value->cajero }} {{ \Carbon\Carbon::parse($value->fecha_apertura)->format('d M Y h:m a')}} {{ \Carbon\Carbon::parse($value->fecha_cierre)->format('d M Y h:m a')}} RD$ {{ number_format($value->monto_apertura, 2) }} RD$ {{ number_format($value->monto_cierre, 2) }} @if($value->estado == 'open') En Curso @else Cerrada @endif
# Cajero Fecha de Apertura Fecha de Cierre Monto de Inicio Monto de Cierre Estado Acciones
@endif @foreach($estadoCaja as $value) @if($value->estado == 'open') @endif @endforeach @endsection