@extends('layouts.app', ['title' => 'Documentacion API']) @section('content')
API REST v1
Especificacion completa de endpoints
Base URL: {{ url('/api/v1') }} · Auth: Bearer {token}
@foreach($endpoints as $group => $list)

{{ $group }}

@foreach($list as $ep) @endforeach
MetodoEndpointDescripcionAuth
{{ $ep['method'] }} {{ $ep['path'] }} {{ $ep['desc'] }} {{ $ep['auth'] ? '✓' : '—' }}
@endforeach
@endsection