@extends('layouts.app') @section('content')

Member Contributions

Track and manage member contribution records with advanced analytics

Advanced Search & Filter
{{ count($contributions) }}
Total Contributors
{{ number_format($contributions->sum('deductionAmount'), 0) }}
Total Contributions
{{ number_format($contributions->sum('monthlySalary'), 0) }}
Total Monthly Salary
{{ $contributions->unique('deptName')->count() }}
Departments
Member Contributions {{ count($contributions) }} records
@foreach($contributions as $index => $record) @endforeach
Check Number National ID Full Name Monthly Salary Contribution Vote Code Department Actions
{{ $record->checkNumber }} {{ $record->nationalId }}
{{ $record->firstName }} {{ $record->middleName }} {{ $record->lastName }}
TZS {{ number_format($record->monthlySalary, 2) }} TZS {{ number_format($record->deductionAmount, 2) }} {{ $record->voteCode }} {{ $record->deptName }}
{{ $contributions->appends(request()->query())->links() }}
@endsection