@extends('admin.layout') @push('css') @endpush @section('content')

{{ __('REPOSICIONES DE LAS CAJAS REGISTRADAS') }}

@if (count($reposicionescajas) > 0) @foreach ($reposicionescajas as $reposicioncaja) @endforeach @else @endif
{{ __('ID') }} {{ __('MONTO') }} {{ __('CAJA') }} {{ __('MOTIVO') }}
{{ $reposicioncaja->id }} {{ $reposicioncaja->monto }} @if($reposicioncaja->caja) {{ $reposicioncaja->caja->nombre }} @endif @if($reposicioncaja->motivo) {{ $reposicioncaja->motivo->nombre }} @endif
{{ __('No hay datos disponibles') }}
{{ $reposicionescajas->links('pagination::bootstrap-4') }}
Mostrando del {{ $reposicionescajas->firstItem() }} al {{ $reposicionescajas->lastItem() }} de {{ $reposicionescajas->total() }} registros
@stop @section('js') @stop