@extends('layouts.baseframe') @section('title', 'API接口列表') @section('content')

API接口基础配置

基础域名 前缀 api_id api_key 操作

API接口列表

@include('layouts._table_header',['data' => \App\Models\Api::$list_field]) @foreach ($data as $item) @include('layouts._table_body',['data' => \App\Models\Api::$list_field,'item' => $item]) @endforeach
接口余额 修改时间 创建时间 操作
@if((\App\Models\Api::isCommonWallet() && !in_array($item->api_name,[\App\Models\Api::COMMON_WALLET_API,\App\Models\Api::LY_LOTTERY])) || $item->api_name == \App\Models\Api::JZ_LOTTERY ) {{ $item->api_money }} @else {{ $item->api_money }} @endif {{ $item->updated_at }} {{ $item->created_at }}
{{-- --}}

总共 {{ count($data) }}

@endsection @section("footer-js") @endsection