Browse Source

Don't limit response JSON

Marcel Pociot 9 năm trước cách đây
mục cha
commit
0b692e3769
2 tập tin đã thay đổi với 3 bổ sung2 xóa
  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