*/ public function toArray(Request $request): array { $result = parent::toArray($request); if ($this->ledgers) { $result['ledgers'] = LedgerResource::collection($this->ledgers); } if ($this->participants) { $result['participants'] = ParticipantResource::collection($this->participants); } return $result; } }