memberPlans?->first(); $currentPlan = $currentMemberPlan ? [ 'code' => $currentMemberPlan->plan->code ?? null, 'start' => $currentMemberPlan->start, 'end' => $currentMemberPlan->end ] : null; $data = [ 'member_id' => $this->member_id, 'birth_date' => $this->birth_date, 'email' => $this->email, 'phone' => $this->person->phone ?? null, 'full_name' => $this->full_name, 'nric' => $this->nric, 'plan' => $currentPlan ]; return $data; } }