@extends('layouts.app') @section('page-title', 'API Tester') @section('content')

API Tester

Postman benzeri API test ve dokümantasyon aracı

Kayıtlı Endpoint'ler

@foreach($endpoints as $collection => $collectionEndpoints)

{{ $collection ?: 'Genel' }}

@foreach($collectionEndpoints as $endpoint)
{{ $endpoint->method }} {{ $endpoint->name }}
@endforeach
@endforeach
@if(count($systemRoutes) > 0)

Sistem API'leri

@foreach($systemRoutes as $route)
{{ $route['method'] }} {{ $route['uri'] }}
@endforeach
@endif

API Request

@push('scripts') @endpush @endsection