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.
15 lines
523 B
15 lines
523 B
@component('users.activities.activity_list_item')
|
|
@slot('time')
|
|
{{ $activity->created_at }}
|
|
@endslot
|
|
@slot('body')
|
|
<p>
|
|
{!! __('activity.'.$activity->object_type.'.'.$activity->type, [
|
|
'user' => $activity->user->name,
|
|
]) !!}
|
|
</p>
|
|
<div>{{ __('job.name') }}: {{ $activity->data['name'] }}</div>
|
|
<div>{{ __('job.description') }}: {{ $activity->data['description'] }}</div>
|
|
<div>{{ __('job.price') }}: {{ format_money($activity->data['price']) }}</div>
|
|
@endslot
|
|
@endcomponent
|