39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<h4 class="mb-4">Detail Rekap — {{ $rekap->periode }}</h4>
|
|
<p>Dilaporkan oleh: <strong>{{ $rekap->bendahara->name ?? '-' }}</strong></p>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Penghuni</th>
|
|
<th>Bulan/Tahun</th>
|
|
<th>Jumlah</th>
|
|
<th>Metode Bayar</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($rekap->iurans as $i)
|
|
<tr>
|
|
<td>{{ $i->penghuni->nama ?? '-' }}</td>
|
|
<td>{{ $i->bulan }} {{ $i->tahun }}</td>
|
|
<td>Rp {{ number_format($i->jumlah,0,',','.') }}</td>
|
|
<td>{{ $i->metode ?? '-' }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th colspan="2">Total</th>
|
|
<th>Rp {{ number_format($rekap->iurans->sum('jumlah'),0,',','.') }}</th>
|
|
<th></th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
<a href="{{ route('rt.review-rekap.index') }}" class="btn btn-link mt-2">← Kembali</a>
|
|
</div>
|
|
@endsection
|