@php $comments = $document->comments() ->with('user') ->orderBy('created_at') ->get() ->map(function ($comment) { return [ 'id' => $comment->id, 'start_offset' => $comment->start_offset, 'end_offset' => $comment->end_offset, 'quote' => $comment->quote, 'body' => $comment->body, 'status' => $comment->status, 'user' => [ 'id' => $comment->user?->id, 'name' => $comment->user?->name, 'email' => $comment->user?->email, ], 'created_at' => $comment->created_at?->toIso8601String(), ]; }); @endphp