BookStack/resources/views/common/activity-item.blade.php

31 lines
854 B
PHP
Raw Normal View History

{{--Requires an Activity item with the name $activity passed in--}}
<div>
@if($activity->user)
<img class="avatar" src="{{ $activity->user->getAvatar(30) }}" alt="{{ $activity->user->name }}">
@endif
</div>
2020-07-26 13:49:05 +00:00
<div>
2015-08-23 12:41:35 +00:00
@if($activity->user)
<a href="{{ $activity->user->getProfileUrl() }}">{{ $activity->user->name }}</a>
@else
2016-12-04 14:08:04 +00:00
{{ trans('common.deleted_user') }}
2015-08-23 12:41:35 +00:00
@endif
2015-08-23 12:41:35 +00:00
{{ $activity->getText() }}
@if($activity->entity && is_null($activity->entity->deleted_at))
<a href="{{ $activity->entity->getUrl() }}">{{ $activity->entity->name }}</a>
2015-08-23 12:41:35 +00:00
@endif
@if($activity->entity && !is_null($activity->entity->deleted_at))
"{{ $activity->entity->name }}"
@endif
2015-08-23 12:41:35 +00:00
<br>
2018-02-17 13:30:52 +00:00
<span class="text-muted"><small>@icon('time'){{ $activity->created_at->diffForHumans() }}</small></span>
2015-08-23 12:41:35 +00:00
</div>