Back GET

{{ $api->name }}

@php $base = url('/api/generated/' . $api->slug); $cols = is_array($api->selected_columns) ? $api->selected_columns : json_decode($api->selected_columns ?? '[]', true); $debugUrl = url('/api/generated/' . $api->slug . '/debug-schema'); @endphp
{{-- ── URL Bar ─────────────────────────────────────────────────────────── --}}
GET {{ $base }}
{{-- ── LEFT: Info + Debug Panel ────────────────────────────────────── --}}
{{-- Columns Info --}}
🗂 Selected Columns {{ count($cols) }}
@if(empty($cols))

All columns selected (*)

@else
@foreach($cols as $col) {{ $col }} @endforeach
@endif
{{-- Endpoints Reference --}}
📡 Endpoints
GET
{{ $base }}?limit=10&offset=0

List all records with pagination

GET
{{ $base }}/{id}

Get a single record by ID

{{-- Debug Schema --}}
{{-- ── RIGHT: Testers ───────────────────────────────────────────────── --}}
{{-- ── Tester 1: List All ──────────────────────────────────────── --}}
GET

List All Records

{{ $base }}?limit=&offset=
{{-- Response --}}
{{-- ── Tester 2: Single Record ──────────────────────────────────── --}}
GET

Get Single Record by ID

{{ $base }}/{id}