@extends('layouts/default') {{-- Page title --}} @section('title') Personal API Keys @parent @stop {{-- Page content --}} @section('content')
@if (!config('app.lock_passwords')) @else

{{ trans('general.feature_disabled') }}

@endif
When generating an API token, be sure to copy it down immediately as they will not be visible to you again.

Your API base url is located at:
{{ url('/api/v1') }}/<endpoint>

API tokens are set to expire in: {{ config('passport.expiration_years') }} years.

Please check the API reference to find specific API endpoints and additional API documentation.

@stop @section('moar_scripts') @endsection