@extends('layouts.admin')
@section('title')
API Management
@endsection
@section('content')
API Key Information
API Public Key |
Allowed IPs |
Permissions |
Created |
|
@foreach ($keys as $key)
{{ $key->public }} |
@if (is_null($key->allowed_ips))
*
@else
@foreach(json_decode($key->allowed_ips) as $ip)
{{ $ip }}
@endforeach
@endif
|
@foreach(json_decode($key->permissions) as &$perm)
{{ $perm->permission }}
@endforeach
|
{{ $key->created_at }} |
|
@endforeach
@endsection