in my config for headers I have @{{token}} which in the views shows up as {{token}}, but I want to use {{token}} in collection for postman w/out having to search/replace. So the solution was this.
@@ -106,6 +106,8 @@ class PostmanCollectionWriter
'Accept' => 'application/json',
])
->map(function ($value, $header) {
+ // Fix so in config we can have @{{ for blade views but it'll use {{ for postman for env vars.
+ $value = str_replace('@{{', '{{', $value);
return [
'key' => $header,
'value' => $value,