mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
18 lines
565 B
PHP
18 lines
565 B
PHP
@extends('layout.default')
|
|
|
|
@section('title', $L('REST API documentation'))
|
|
@section('viewJsName', 'apidoc')
|
|
|
|
@section('content')
|
|
<div id="swagger-ui"></div>
|
|
@stop
|
|
|
|
@push('pageStyles')
|
|
<link href="{{ $U('/bower_components/swagger-ui/dist/swagger-ui.css?v=') }}{{ $version }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@push('pageScripts')
|
|
<script src="{{ $U('/bower_components/swagger-ui/dist/swagger-ui-bundle.js?v=') }}{{ $version }}"></script>
|
|
<script src="{{ $U('/bower_components/swagger-ui/dist/swagger-ui-standalone-preset.js?v=') }}{{ $version }}"></script>
|
|
@endpush
|