2021-08-22 20:15:58 +08:00
|
|
|
@extends('layouts.simple')
|
2020-01-16 04:18:02 +08:00
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container pt-xl">
|
|
|
|
|
|
|
|
<div class="grid right-focus reverse-collapse">
|
|
|
|
<div>
|
2020-01-18 22:03:11 +08:00
|
|
|
|
2020-02-03 05:59:51 +08:00
|
|
|
<div class="sticky-sidebar">
|
|
|
|
<p class="text-uppercase text-muted mb-xm mt-l"><strong>Getting Started</strong></p>
|
|
|
|
|
|
|
|
<div class="text-mono">
|
|
|
|
<div class="mb-xs"><a href="#authentication">Authentication</a></div>
|
|
|
|
<div class="mb-xs"><a href="#request-format">Request Format</a></div>
|
|
|
|
<div class="mb-xs"><a href="#listing-endpoints">Listing Endpoints</a></div>
|
|
|
|
<div class="mb-xs"><a href="#error-handling">Error Handling</a></div>
|
2022-05-09 22:12:29 +08:00
|
|
|
<div class="mb-xs"><a href="#rate-limits">Rate Limits</a></div>
|
2022-08-11 17:49:45 +08:00
|
|
|
<div class="mb-xs"><a href="#content-security">Content Security</a></div>
|
2020-02-03 05:59:51 +08:00
|
|
|
</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">
|
|
|
|
<a href="#{{ $endpoint['name'] }}" class="text-mono inline block mr-s">
|
|
|
|
<span class="api-method" data-method="{{ $endpoint['method'] }}">{{ $endpoint['method'] }}</span>
|
|
|
|
</a>
|
|
|
|
<a href="#{{ $endpoint['name'] }}" class="text-mono">
|
2020-04-10 23:05:17 +08:00
|
|
|
{{ $endpoint['controller_method_kebab'] }}
|
2020-02-03 05:59:51 +08:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
2020-01-16 04:18:02 +08:00
|
|
|
@endforeach
|
2020-02-03 05:59:51 +08:00
|
|
|
</div>
|
2020-01-16 04:18:02 +08:00
|
|
|
</div>
|
|
|
|
|
2020-01-18 17:48:30 +08:00
|
|
|
<div style="overflow: auto;">
|
2020-01-18 22:03:11 +08:00
|
|
|
|
2022-11-15 19:24:31 +08:00
|
|
|
<section component="code-highlighter" class="card content-wrap auto-height">
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('api-docs.parts.getting-started')
|
2020-01-18 22:03:11 +08:00
|
|
|
</section>
|
|
|
|
|
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)
|
2021-08-22 20:15:58 +08:00
|
|
|
@include('api-docs.parts.endpoint', ['endpoint' => $endpoint, 'loop' => $loop])
|
2020-01-16 04:18:02 +08:00
|
|
|
@endforeach
|
|
|
|
</section>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@stop
|