@extends('layouts.app') @section('title', 'CSR 驗證結果') @push('styles') @include('ssl._styles') @endpush @section('content')
@include('ssl._sidebar')
CSR 驗證結果
解析後的 CSR 主體資訊
@php $subject = is_array($subject) ? $subject : []; $labels = [ 'C' => '國家 (Country)', 'ST' => '州/省 (State)', 'L' => '城市 (Locality)', 'O' => '組織 (Organization)', 'OU' => '部門 (Organizational Unit)', 'CN' => '網域名稱 (Common Name)', ]; @endphp @if(count($subject) > 0) @foreach($subject as $key => $value) @endforeach
欄位
{{ $labels[$key] ?? $key }} {{ $value }}
@else
無法解析 CSR 資訊,請確認格式是否正確。
@endif
@endsection