@extends('layouts.app') @section('title', 'API Keys') @section('content')

API Keys

API keys are used to authenticate requests to the DyDev APP API

@if (session('success'))
{{ session('success') }}
@endif @if (session('generated_key'))

New API Key Generated

Please copy this key immediately. You won't be able to see it again!

{{ session('generated_key') }}
@endif
Show entries
@include('api-keys.partials.table')
@include('api-keys.partials.api-docs')
@include('api-keys.partials.generate-modal') @include('api-keys.partials.edit-modal') @include('api-keys.partials.delete-modal') @include('api-keys.partials.regenerate-modal') @push('scripts') @endpush @endsection