%PDF- %PDF-
| Direktori : /home/graphicd/www/vebto/common/Comments/Notifications/ |
| Current File : /home/graphicd/www/vebto/common/Comments/Notifications/CommentReceivedReply.php |
<?php
namespace Common\Comments\Notifications;
use App\Services\UrlGenerator;
use App\User;
use Common\Comments\Comment;
use Illuminate\Bus\Queueable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notification;
use Str;
class CommentReceivedReply extends Notification
{
use Queueable;
/**
* @var array
*/
public $newComment;
/**
* @var Model
*/
public $commentable;
/**
* @var array
*/
private $originalComment;
public function __construct(Comment $newComment, array $originalComment)
{
$this->newComment = $newComment;
$this->originalComment = $originalComment;
$this->commentable = app(
modelTypeToNamespace($newComment['commentable_type']),
)->find($newComment['commentable_id']);
}
/**
* @param User $notifiable
* @return array
*/
public function via($notifiable)
{
return ['database'];
}
/**
* @param User $notifiable
* @return array
*/
public function toArray($notifiable)
{
$username = $this->newComment['user']['display_name'];
$commentable = $this->commentable->toNormalizedArray();
return [
'image' => $this->originalComment['user']['avatar'],
'mainAction' => [
'action' => app(UrlGenerator::class)->generate(
$this->commentable,
),
],
'lines' => [
[
'content' => __(':username replied to your comment:', [
'username' => $username,
]),
'action' => [
'action' => app(UrlGenerator::class)->user(
$this->newComment['user'],
),
'label' => __('View user'),
],
'type' => 'secondary',
],
[
'content' =>
'"' .
Str::limit($this->newComment['content'], 180) .
'"',
'icon' => 'comment',
'type' => 'primary',
],
[
'content' => __('on') . " {$commentable['name']}",
'type' => 'secondary',
],
],
];
}
}