@extends('layouts/layoutMaster') @section('title', $title . ' Management - Crud App') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')

@if(!empty($data))

Laporan Pembayaran {{ $data['bulan'][$data['periode']] }} {{ $data['tahun'] }}

@php $i = 1; @endphp @if($status >= 0 && $status < 4) @foreach ($pembayaran as $s) @php $total = 0; @endphp @php $i++; @endphp @endforeach @endif @if($status == 0 || $status == 4) @foreach($data['sisa_santri'] as $s) @php $total = 0; @endphp @php $i++; @endphp @endforeach @endif
No. No. Induk Nama Santri Kode Kelas Kode Murroby Tanggal Bayar Pengirim Status Total
{{$i}} {{$s->no_induk}} {{$s->nama}} {{$s->kelas}} {{$s->kamar_id}} ({{ ($s->kamar_id==0 || $s->kamar_id >= 50)?"":$data['nama_murroby'][$s->kamar_id]}}) {{$s->tanggal_bayar}} {{$s->atas_nama ?? ''}} @if($s->validasi == 0) @elseif($s->validasi == 1) @else @endif Rp. {{number_format($s->jumlah, 0, ',', '.')}}
{{$i}} {{$s->no_induk}} {{$s->nama}} {{$s->kelas}} {{$s->kamar_id}} ({{ ($s->kamar_id==0)?"":$data['nama_murroby'][$s->kamar_id]}}) - - Rp. 0
@endif
@endsection