@forelse($detail['versions'] as $version)
v{{ $version['version'] }}
发布于 {{ $version['published_at'] ? \Illuminate\Support\Carbon::parse($version['published_at'])->format('Y-m-d H:i') : '未标记时间' }}
{{ $version['is_stable'] ? '稳定版' : '预发布' }}
@if($version['is_latest'])
最新
@endif
Typecho {{ $version['compatibility']['typecho_min'] ?: '-' }} ~ {{ $version['compatibility']['typecho_max'] ?: '-' }}
PHP {{ $version['compatibility']['php_min'] ?: '-' }} ~ {{ $version['compatibility']['php_max'] ?: '-' }}
@if(!empty($version['compatibility']['php_extensions']))
扩展 {{ collect($version['compatibility']['php_extensions'])->join(', ') }}
@endif
@if(!empty($version['changelog']))
{{ $version['changelog'] }}
@endif