@extends('layouts.admin') @section('styles') @endsection @section('content')

{{$cuadre->tipo}}

VALOR TOTAL: Q. {{number_format($cuadre->monto, 2)}}

FECHA DE REGISTRO: {{$cuadre->created_at}}

NUEVA BOLETA SIN CUADRAR

@csrf
BOLETAS
@foreach ($boletas as $b )

VALOR: Q. {{number_format($b->valor, 2)}}

NUMERO DE REFERENCIA: {{$b->referencia}}

CONCEPTO: {{$b->concepto}}

ACEPTADO: {{$b->acept}}

TIPO: {{$b->user->tipo}}

@if ($b->acept != 'SI')
@csrf @method('DELETE')
@else @can('admin')
@csrf @method('DELETE')
@endcan @endif
@endforeach
@endsection @section('scripts') @endsection