@extends('adminlte::page')
@section('title', 'Dashboard')
@section('content_header')
@stop
@section('content')
Reporte de Pagos
Codigo |
Nombre |
Acciones |
@foreach($arrendatario as $ARRENDATARIOS)
{{ $ARRENDATARIOS->id }} |
{{ $ARRENDATARIOS->nombre }} |
|
@endforeach
@foreach($arrendatario as $ARRENDATARIOS)
Inmueble |
Mes/Cuota |
Monto |
@foreach($ARRENDATARIOS->pagos() as $pago)
{{ $pago->inmueble->direccion }} |
{{ $pago->meses }} |
{{ $pago->monto }} |
@endforeach
@endforeach
@stop
@section('css')
{{-- Add here extra stylesheets --}}
{{-- --}}
@stop
@section('js')
@stop