$note->getRouteKey(), 'key' => [ 'public' => $note->getPublicKey(), 'route' => $note->getRouteKey(), ], 'parent_id' => $note->parent_id, 'parent_type' => $note->parent_type, 'description' => $note->description, 'user_id' => $note->user_id, 'user_type' => $note->user_type, 'deleted_at' => $note->deleted_at, 'url' => [ 'public' => trans_url('notes/'.$note->getPublicKey()), 'user' => guard_url('notes/note/'.$note->getRouteKey()), ], 'status' => trans('app.'.$note->status), 'created_at' => format_date($note->created_at), 'updated_at' => format_date($note->updated_at), ]; } }