浏览代码

Don't limit response JSON

Marcel Pociot 9 年之前
父节点
当前提交
0b692e3769
共有 2 个文件被更改,包括 3 次插入2 次删除
  1. 2 1
      .gitignore
  2. 1 1
      src/resources/views/documentarian.blade.php

+ 2 - 1
.gitignore

@@ -1,4 +1,5 @@
 .DS_Store
 composer.lock
 .php_cs.cache
-/vendor/
+/vendor/
+/public

+ 1 - 1
src/resources/views/documentarian.blade.php

@@ -66,7 +66,7 @@ console.log(response);
 > Example response:
 
 ```json
-{!! str_limit(json_encode(json_decode($parsedRoute['response']), JSON_PRETTY_PRINT)) !!}
+{!! json_encode(json_decode($parsedRoute['response']), JSON_PRETTY_PRINT) !!}
 ```
 @endif