@extends('backend.layouts.app') @section('content') @php $months = array(); for($i = 1; $i <= 12; $i++){ $month = date('F', strtotime('2000-'.$i.'-01')); $months[$month] = $month; } $yearOptions = array(); for($year = 2000; $year <= date('Y')+2; $year++){ $yearOptions[$year] = $year; } @endphp
@foreach($subscriptions as $subscription) @endforeach
SN Mem No Mem Name Status Month Sub Fee Dependent Fee Locker Fee Previous Due Total Paid Forwarding Due Action
{{(($subscriptions->currentPage()-1)* $subscriptions->perPage())+$loop->index+1}} {{$subscription->member->membership_no}} {{$subscription->member->full_name}} {{ $subscription->activity_status }} {{$subscription->month . ', ' . $subscription->year}} {{number_format($subscription->subscription_fee, 2)}} {{number_format($subscription->dependent_fee, 2)}} {{number_format($subscription->locker_fee, 2)}} {{number_format($subscription->total_amount, 2)}} {{number_format($subscription->paid_amount, 2)}} {{number_format($subscription->due_amount, 2)}}
@endsection @section('before_body_end') @endsection