Línea 1699... |
Línea 1699... |
1699 |
array_push($comments, [
|
1699 |
array_push($comments, [
|
1700 |
'unique' => uniqid(),
|
1700 |
'unique' => uniqid(),
|
1701 |
'user_url' => $this->url()->fromRoute('profile/view', ['id' => $user->uuid]),
|
1701 |
'user_url' => $this->url()->fromRoute('profile/view', ['id' => $user->uuid]),
|
1702 |
'user_name' => $user->first_name . ' ' . $user->last_name,
|
1702 |
'user_name' => $user->first_name . ' ' . $user->last_name,
|
1703 |
/* Aqui es Anderson */
|
1703 |
/* Aqui es Anderson */
|
1704 |
'fuck' => $company,
|
- |
|
- |
|
1704 |
|
1705 |
'user_image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $company->image]),
|
1705 |
'user_image' => $this->url()->fromRoute('storage', ['type' => 'user', 'code' => $user->uuid, 'filename' => $user->image]),
|
1706 |
//'user_image' => $this->url()->fromRoute('storage', ['type' => 'company', 'code' => $company->uuid, 'filename' => $company->image]),
|
- |
|
1707 |
'time_elapsed' => Functions::timeAgo($record->added_on, $now),
|
1706 |
'time_elapsed' => Functions::timeAgo($record->added_on, $now),
|
1708 |
'comment' => $record->comment,
|
1707 |
'comment' => $record,
|
1709 |
'link_delete' => $link_delete
|
1708 |
'link_delete' => $link_delete
|
1710 |
]);
|
1709 |
]);
|
1711 |
}
|
1710 |
}
|
1712 |
$item['comment_add_url'] = $this->url()->fromRoute('feed/comment', ['id' => $feed->uuid]);
|
1711 |
$item['comment_add_url'] = $this->url()->fromRoute('feed/comment', ['id' => $feed->uuid]);
|
1713 |
$item['comments'] = $comments;
|
1712 |
$item['comments'] = $comments;
|