2020-01-16 04:18:02 +08:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container pt-xl">
|
|
|
|
|
|
|
|
<div class="grid right-focus reverse-collapse">
|
|
|
|
|
|
|
|
<div>
|
|
|
|
@foreach($docs as $model => $endpoints)
|
|
|
|
<p class="text-uppercase text-muted mb-xm mt-l"><strong>{{ $model }}</strong></p>
|
|
|
|
|
|
|
|
@foreach($endpoints as $endpoint)
|
|
|
|
<div class="mb-xs">
|
2020-01-18 17:48:30 +08:00
|
|
|
<a href="#{{ $endpoint['name'] }}" class="text-mono inline block mr-s">
|
2020-01-16 04:18:02 +08:00
|
|
|
<span class="api-method" data-method="{{ $endpoint['method'] }}">{{ $endpoint['method'] }}</span>
|
2020-01-18 17:48:30 +08:00
|
|
|
</a>
|
|
|
|
<a href="#{{ $endpoint['name'] }}" class="text-mono">
|
|
|
|
{{ $endpoint['controller_method'] }}
|
2020-01-16 04:18:02 +08:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
|
2020-01-18 17:48:30 +08:00
|
|
|
<div style="overflow: auto;">
|
2020-01-16 04:18:02 +08:00
|
|
|
@foreach($docs as $model => $endpoints)
|
|
|
|
<section class="card content-wrap auto-height">
|
|
|
|
<h1 class="list-heading text-capitals">{{ $model }}</h1>
|
|
|
|
|
|
|
|
@foreach($endpoints as $endpoint)
|
2020-01-18 17:48:30 +08:00
|
|
|
<h6 class="text-uppercase text-muted float right">{{ $endpoint['controller_method'] }}</h6>
|
2020-01-16 04:18:02 +08:00
|
|
|
<h5 id="{{ $endpoint['name'] }}" class="text-mono mb-m">
|
|
|
|
<span class="api-method" data-method="{{ $endpoint['method'] }}">{{ $endpoint['method'] }}</span>
|
|
|
|
{{ url($endpoint['uri']) }}
|
|
|
|
</h5>
|
|
|
|
<p class="mb-m">{{ $endpoint['description'] ?? '' }}</p>
|
2020-01-18 17:48:30 +08:00
|
|
|
@if($endpoint['body_params'] ?? false)
|
|
|
|
<details class="mb-m">
|
|
|
|
<summary class="text-muted">Body Parameters</summary>
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<th>Param Name</th>
|
|
|
|
<th>Value Rules</th>
|
|
|
|
</tr>
|
|
|
|
@foreach($endpoint['body_params'] as $paramName => $rules)
|
|
|
|
<tr>
|
|
|
|
<td>{{ $paramName }}</td>
|
|
|
|
<td>
|
|
|
|
@foreach($rules as $rule)
|
|
|
|
<code class="mr-xs">{{ $rule }}</code>
|
|
|
|
@endforeach
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</details>
|
|
|
|
@endif
|
|
|
|
@if($endpoint['example_request'] ?? false)
|
|
|
|
<details details-highlighter class="mb-m">
|
|
|
|
<summary class="text-muted">Example Request</summary>
|
|
|
|
<pre><code class="language-json">{{ $endpoint['example_request'] }}</code></pre>
|
|
|
|
</details>
|
|
|
|
@endif
|
2020-01-16 04:18:02 +08:00
|
|
|
@if($endpoint['example_response'] ?? false)
|
2020-01-18 17:48:30 +08:00
|
|
|
<details details-highlighter class="mb-m">
|
2020-01-16 04:18:02 +08:00
|
|
|
<summary class="text-muted">Example Response</summary>
|
|
|
|
<pre><code class="language-json">{{ $endpoint['example_response'] }}</code></pre>
|
|
|
|
</details>
|
2020-01-18 17:48:30 +08:00
|
|
|
@endif
|
|
|
|
@if(!$loop->last)
|
|
|
|
<hr>
|
2020-01-16 04:18:02 +08:00
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
</section>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@stop
|