2024-05-28 17:19:36 -04:00
|
|
|
<p {{ $attributes->class(['text-slate-700 dark:text-gray-300 text-sm']) }}>
|
2024-08-31 01:19:22 -04:00
|
|
|
<span title="{{ __('Exactly') }} {{ $mod->downloads }}">{{ Number::downloads($mod->downloads) }} downloads</span>
|
2024-05-28 17:19:36 -04:00
|
|
|
@if(!is_null($mod->created_at))
|
|
|
|
<span>
|
|
|
|
— Created
|
|
|
|
<time datetime="{{ $mod->created_at->format('c') }}">
|
2024-09-09 23:07:57 -04:00
|
|
|
{{ Carbon::dynamicFormat($mod->created_at) }}
|
2024-05-28 17:19:36 -04:00
|
|
|
</time>
|
|
|
|
</span>
|
|
|
|
@elseif(!is_null($modVersion->updated_at))
|
2024-09-09 23:07:57 -04:00
|
|
|
<span>
|
|
|
|
— Updated
|
|
|
|
<time datetime="{{ $modVersion->updated_at->format('c') }}">
|
|
|
|
{{ Carbon::dynamicFormat($modVersion->updated_at) }}
|
|
|
|
</time>
|
|
|
|
</span>
|
2024-05-28 17:19:36 -04:00
|
|
|
@endif
|
|
|
|
</p>
|