@extends('layouts.main', ['title' => 'Kas', 'page_heading' => 'Data Kas']) @section('content')
{{-- Start Statistics --}}
Total Bulan Ini
{{ $data['totals']['thisMonth'] }}
Total Tahun Ini
{{ $data['totals']['thisYear'] }}
Sudah Membayar Minggu Ini
{{ $data['studentCountWho']['paidThisWeek'] }}
Belum Membayar Minggu Ini
{{ $data['studentCountWho']['notPaidThisWeek'] }}

Belum Membayar Minggu Ini

@if($data['studentCountWho']['notPaidThisWeek'] > 0)
@foreach($data['students']['notPaidThisWeekLimit'] as $studentNotPaidThisWeek)
{{ $studentNotPaidThisWeek->name }}
{{ $studentNotPaidThisWeek->student_identification_number }}
@endforeach
@else

Terima kasih! Semua sudah membayar

@endif
{{-- End of Statistics --}} @include('utilities.alert-flash-message')
# Nama Pelajar Tagihan Total Bayar Tanggal Aksi
@endsection @push('modal') @include('cash_transactions.modal.create') @include('cash_transactions.modal.show') @include('cash_transactions.modal.edit') @include('cash_transactions.modal.look-more' ) @endpush @push('js') @include('cash_transactions.script') @endpush