← Back to Members
@if($member->photo) @else
{{ strtoupper(substr($member->first_name,0,1)) }}
@endif

{{ $member->first_name }} {{ $member->middle_name }} {{ $member->last_name }}

ID: {{ $member->member_id }} {{ ucfirst($member->membership_status) }} {{ $member->department->name ?? 'No Department' }}
Edit Member

Total Tithes

{{ church_currency() }} {{ number_format($tithes->sum('amount'), 2) }}

Total Offerings

{{ church_currency() }} {{ number_format($offerings->sum('amount'), 2) }}

Total Donations

{{ church_currency() }} {{ number_format($donations->sum('amount'), 2) }}

Attendance Count

{{ $attendances->count() }}

Personal Information

Gender

{{ $member->gender }}

Date of Birth

{{ $member->date_of_birth ?? 'N/A' }}

Phone

{{ $member->phone }}

WhatsApp

{{ $member->whatsapp ?? 'N/A' }}

Email

{{ $member->email ?? 'N/A' }}

Marital Status

{{ $member->marital_status ?? 'N/A' }}

Occupation

{{ $member->occupation ?? 'N/A' }}

Joined Date

{{ $member->joined_date ?? 'N/A' }}

Address

{{ $member->address ?? 'N/A' }}

City / Town

{{ $member->city ?? 'N/A' }}

Giving Summary

Tithes {{ church_currency() }} {{ number_format($tithes->sum('amount'), 2) }}
Offerings {{ church_currency() }} {{ number_format($offerings->sum('amount'), 2) }}
Donations {{ church_currency() }} {{ number_format($donations->sum('amount'), 2) }}
Total Giving {{ church_currency() }} {{ number_format($tithes->sum('amount') + $offerings->sum('amount') + $donations->sum('amount'), 2) }}

Recent Attendance

@forelse($attendances as $attendance) @empty @endforelse
Date Service Status
{{ $attendance->attendance_date }} {{ $attendance->service_type }} {{ $attendance->status }}
No attendance records.

Recent Tithes

@forelse($tithes as $tithe) @empty @endforelse
Date Method Amount
{{ $tithe->payment_date }} {{ $tithe->payment_method }} {{ church_currency() }} {{ number_format($tithe->amount, 2) }}
No tithe records.

Recent Offerings

@forelse($offerings as $offering) @empty @endforelse
Date Service Amount
{{ $offering->offering_date }} {{ $offering->service_type ?? 'N/A' }} {{ church_currency() }} {{ number_format($offering->amount, 2) }}
No offering records.

Recent Donations

@forelse($donations as $donation) @empty @endforelse
Type Note Amount
{{ $donation->donation_type }} {{ $donation->note ?? 'N/A' }} {{ church_currency() }} {{ number_format($donation->amount, 2) }}
No donation records.
ID Card