@section('title', __('Registros'))

Registros

@if (session()->has('message'))
{{ session('message') }}
@endif
@auth @if (Auth::user()->Tipo != 'Contador') @endif @endauth @if (session('error'))
{{ session('error') }}
@endif @auth @if (Auth::user()->Tipo === 'Administrador' || Auth::user()->Tipo === 'Contador')
Agregar Registros
@endif @if (Auth::user()->Tipo === 'Administrador') @endif @endauth
@include('livewire.registros.modals')
@auth @if (Auth::user()->Tipo === 'Administrador' || Auth::user()->Tipo === 'Contador') @endif @endauth @forelse($registros as $row) @auth @if (Auth::user()->Tipo === 'Administrador') @endif @if (Auth::user()->Tipo === 'Contador' && $row->Activado) @endif @endauth @empty @endforelse
# Fecha N° Voucher N° Cheque C_P Nombres y Apellidos Detalle Entrada Salida Saldo Instituto ActivadoAcciones
{{ $registros->firstItem() + $loop->index }} {{ $row->FechaFormateada }} {{ $row->N°_Voucher }} {{ $row->N°_Cheque }} {{ $row->C_P }} {{ $row->Nombres_y_Apellidos }} {{ $row->Detalle }} {{ $row->Entrada }} {{ $row->Salida }} {{ $row->Saldo }} {{ $row->Nombre }} {{ $row->Activado }}
No data Found
{{ $registros->links() }}