@if(session('success'))
@endif
{{-- Info strip --}}
Data Source
{{ optional($api->dataSource)->name ?? '—' }}
View
{{ $api->dataset_id }}
Columns
{{ $columnCount ?? 0 }} fields
{{-- Endpoint cards --}}
Available Endpoints
@foreach($methodMeta as $method => $meta)
@if(in_array($method, $methods))
@endif
@endforeach
{{-- Exposed Columns --}}
Exposed Columns
@php
$cols = is_array($api->selected_columns)
? $api->selected_columns
: json_decode($api->selected_columns ?? '[]', true);
@endphp
@if(count($cols ?? []))
@foreach($cols as $col)
{{ $col }}
@endforeach
@else
No columns recorded.
@endif