@extends('oxygen::layouts.master-dashboard') @section('content') {{ lotus()->pageHeadline($pageTitle) }} {{ lotus()->breadcrumbs([ ['Dashboard', route('dashboard')], [$pageTitle, null, true] ]) }} @if (!env('API_ACTIVE', false))
{{ lotus()->emptyStatePanel('API is disabled for this environment.') }}
@else @if (empty($paths)) {{ lotus()->emptyStatePanel('No content defined. Ensure API files exists to see content.') }} @else @foreach ($apiKeys as $apiKey) @endforeach @foreach ($paths as $path) @endforeach
API KEY {{ $apiKey }}
{{ $path['name'] }}
@if (!empty($path['description'])) {{ $path['description'] }} @endif
View
@endif @endif @stop