1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

enh(recently updated): show updatedBy and updated_at

This commit is contained in:
julesdevops
2022-01-18 22:08:01 +01:00
parent 2aace16704
commit 6db64763fe
2 changed files with 14 additions and 3 deletions

View File

@ -20,4 +20,13 @@
</div>
@endif
@if(($showUpdatedBy ?? false) && $entity->relationLoaded('updatedBy') && $entity->updatedBy)
<small title="{{ $entity->updated_at->toDayDateTimeString() }}">
{!! trans('entities.meta_updated_name', [
'timeLength' => $entity->updated_at->diffForHumans(),
'user' => e($entity->updatedBy->name)
]) !!}
</small>
@endif
@endcomponent