You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
306 B
11 lines
306 B
@component('users.activities.activity_list_item')
|
|
@slot('time')
|
|
{{ $activity->created_at }}
|
|
@endslot
|
|
@slot('body')
|
|
{!! __('activity.'.$activity->object_type.'.'.$activity->type, [
|
|
'user' => $activity->user->name,
|
|
'name' => $activity->object->name,
|
|
]) !!}
|
|
@endslot
|
|
@endcomponent
|