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

29 lines
786 B
PHP
Raw Normal View History

{{--Requires an Activity item with the name $activity passed in--}}
2015-08-23 12:41:35 +00:00
@if($activity->user)
<div class="left">
<img class="avatar" src="{{ $activity->user->getAvatar(30) }}" alt="{{ $activity->user->name }}">
2015-08-23 12:41:35 +00:00
</div>
@endif
<div class="right" v-pre>
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)
<a href="{{ $activity->entity->getUrl() }}">{{ $activity->entity->name }}</a>
2015-08-23 12:41:35 +00:00
@endif
@if($activity->extra) "{{ $activity->extra }}" @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>