frontmatter.blade.php 578 B

123456789101112131415161718192021222324
  1. title: {{ $settings['title'] }}
  2. language_tabs:
  3. @foreach($settings['languages'] as $language)
  4. - {{ $language }}
  5. @endforeach
  6. includes:
  7. - "./prepend.md"
  8. - "./authentication.md"
  9. - "./groups/*"
  10. - "./errors.md"
  11. - "./append.md"
  12. logo: {{ $settings['logo'] ?? false }}
  13. toc_footers:
  14. @if($showPostmanCollectionButton)
  15. - <a href="{{ $postmanCollectionLink }}">View Postman collection</a>
  16. @endif
  17. @if($showOpenAPISpecButton)
  18. - <a href="{{ $openAPISpecLink }}">View OpenAPI (Swagger) spec</a>
  19. @endif
  20. - <a href='http://github.com/knuckleswtf/scribe'>Documentation powered by Scribe ✍</a>