@extends('layouts.backend.app') @section('title') Detail Pembayaran Murid @endsection @section('content') @if ($message = Session::get('success')) @elseif($message = Session::get('error')) @endif

Data Pembayaran Murid Tahun {{$payment->year}}

@foreach ($payment->detailPayment as $key => $detail) @endforeach
No Bulan Jumlah Status Diproses Diproses Tanggal Action
{{$key+1}} {{$detail->month}} Rp {{number_format($detail->amount)}} {{$detail->status}} {{$detail->aprroveBy->name ?? '-'}} {{$detail->approve_date ?? '-'}} @if ($detail->file != null && $detail->status == 'unpaid') Proses Bukti Bayar @elseif($detail->status == 'paid') Bukti Bayar @endif
@include('spp::murid.update')
@endsection @section('scripts') @endsection