@extends('layouts.simple') @section('body')
Getting Started
Authentication
Request Format
Listing Endpoints
Error Handling
Rate Limits
Content Security
@foreach($docs as $model => $endpoints)
{{ $model }}
@foreach($endpoints as $endpoint)
{{ $endpoint['method'] }}
{{ $endpoint['controller_method_kebab'] }}
@endforeach @endforeach
@include('api-docs.parts.getting-started')
@foreach($docs as $model => $endpoints)
{{ $model }}
@foreach($endpoints as $endpoint) @include('api-docs.parts.endpoint', ['endpoint' => $endpoint, 'loop' => $loop]) @endforeach
@endforeach
@stop