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

{{ $o->name }}

DID: {{ $o->public_alias_did ?: $o->did }}
Country: {{ $o->country ?? '—' }}
Status: {{ $o->verification_status === 'revoked' ? 'revoked' : 'active' }}
Controller: {{ $o->owner_did ?? '—' }}
Last verified: {{ optional($o->verified_at)->toDateString() ?? '—' }}
Organization JSON Open DID Doc
{{ json_encode([
        'name'=>$o->name,
        'country'=>$o->country,
        'did'=>$o->public_alias_did ?: $o->did
      ], JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES) }}
@endsection