{{-- Extends layout --}} @extends(((Auth()->user()) ? 'layout.app_private' : 'layout.app_public' )) {{-- Content --}} @section('content') @if (Auth()->user())
{!!__("static_pages.documentation_api.endpoints.".$api["name"].".desc")!!}
{{__("static_pages.documentation_api.field")}} | {{__("static_pages.documentation_api.type")}} | {{__("static_pages.documentation_api.description")}} |
---|---|---|
{{$row["field"]}} | {{__("static_pages.documentation_api.types.".$row["type"])}} | {{__("static_pages.documentation_api.descriptions.".$row["field"])}} |
{{json_encode(json_decode($api["result_example"]), JSON_PRETTY_PRINT)}}@else
{{$api["result_example"]}}@endif
{{__("static_pages.documentation_api.error_code")}} | {{__("static_pages.documentation_api.description")}} |
---|---|
{{$error_code}} | {{__("static_pages.documentation_api.errors.".$error_code)}} |