@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf

Meeting Information

Select a cell group, enter meeting details and mark attendance.

Member Attendance

Attendance members will appear after selecting a cell group.

Select a cell group to load its members.

Attendance guidance

Members marked Present or Late will count toward the meeting attendance rate.

Cancel
@php $groupData = $cellGroups->mapWithKeys(function ($group) { return [ $group->id => [ 'location' => $group->location, 'members' => $group->members->map(function ($member) { return [ 'id' => $member->id, 'name' => trim( $member->first_name . ' ' . $member->last_name ), 'member_id' => $member->member_id, 'phone' => $member->phone, ]; })->values(), ], ]; }); @endphp