@extends('layouts.master') @section('title') Inicio @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Inicio @endslot @slot('li_2') Panel Catastro @endslot @slot('title')Historial - {{ $caja->nombre }} @endslot @endcomponent
@foreach($caja->movimientos as $mov) @endforeach
Fecha Tipo Concepto Monto Referencia
{{ $mov->fecha }} {{ $mov->tipo }} {{ $mov->concepto }} S/ {{ number_format($mov->monto, 2) }} {{ $mov->referencia ?? '-' }}
@endsection @section('script') @endsection