@extends('layouts.app') @section('content')

Root CA Management

Manage your Root and Intermediate Certificates.

@forelse($certificates as $cert) @empty @endforelse
Type Common Name Serial Number Valid From Valid To Status Actions
{{ ucfirst(str_replace('_', ' ', $cert->ca_type)) }} {{ $cert->common_name }} {{ $cert->serial_number }} {{ \Carbon\Carbon::parse($cert->valid_from)->format('Y-m-d H:i') }} {{ \Carbon\Carbon::parse($cert->valid_to)->format('Y-m-d H:i') }} @if($cert->status === 'valid') Valid @else Expired @endif
@csrf
No Root CA certificates found. (Run Setup first)
@endsection