shalvah 6 éve
szülő
commit
5e8f81de27

+ 1 - 1
resources/views/partials/example-requests/bash.blade.php

@@ -9,4 +9,4 @@ curl -X {{$route['methods'][0]}} {{$route['methods'][0] == 'GET' ? '-G ' : ''}}"
     -d '{!! json_encode($route['cleanBodyParameters']) !!}'
 @endif
 
-```
+```

+ 1 - 1
resources/views/partials/example-requests/javascript.blade.php

@@ -35,4 +35,4 @@ fetch(url, {
 })
     .then(response => response.json())
     .then(json => console.log(json));
-```
+```

+ 0 - 1
resources/views/partials/frontmatter.blade.php

@@ -3,7 +3,6 @@ title: API Reference
 language_tabs:
 @foreach($settings['languages'] as $language)
 - {{ $language }}
-
 @endforeach
 
 includes:

+ 0 - 1
resources/views/partials/route.blade.php

@@ -15,7 +15,6 @@
 @include("apidoc::partials.example-requests.$language")
 
 @endforeach
-
 @if(in_array('GET',$route['methods']) || (isset($route['showresponse']) && $route['showresponse']))
 @if(is_array($route['response']))
 @foreach($route['response'] as $response)