mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
14 lines
531 B
PHP
14 lines
531 B
PHP
|
<p {{ $attributes->class(['text-slate-700 dark:text-gray-300 text-sm']) }}>
|
||
|
<span>{{ Number::format($mod->total_downloads) }} downloads</span>
|
||
|
@if(!is_null($mod->created_at))
|
||
|
<span>
|
||
|
— Created
|
||
|
<time datetime="{{ $mod->created_at->format('c') }}">
|
||
|
{{ $mod->created_at->diffForHumans() }}
|
||
|
</time>
|
||
|
</span>
|
||
|
@elseif(!is_null($modVersion->updated_at))
|
||
|
<span>— Updated {{ $modVersion->updated_at->diffForHumans() }}</span>
|
||
|
@endif
|
||
|
</p>
|