@extends('admin.layouts') @section('css') @endsection @section('content')

域名证书列表(V2Ray节点的伪装域名)

@can('admin.node.cert.create') @endcan
@foreach ($certs as $cert) @endforeach
# 域名 KEY PEM 签发机构 签发日期 到期时间 操作
{{$cert->id}} {{$cert->domain}} {{$cert->key ? '✔️' : '❌'}} {{$cert->pem ? '✔️' : '❌'}} {{$cert->issuer}} {{$cert->from}} {{$cert->to}} @canany(['admin.node.cert.edit', 'admin.node.cert.destroy'])
@can('admin.node.cert.edit') @endcan @can('admin.node.cert.destroy') @endcan
@endcanany
@endsection @section('javascript') @can('admin.node.cert.destroy') @endcan @endsection