80 lines
1.9 KiB
PHP
80 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Modules\Essentials\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Notifications\Messages\BroadcastMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class NewMessageNotification extends Notification
|
|
{
|
|
use Queueable;
|
|
|
|
protected $message;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($message)
|
|
{
|
|
$this->message = $message;
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function via($notifiable)
|
|
{
|
|
$channels = $this->message->database_notification ? ['database'] : [];
|
|
if (isPusherEnabled()) {
|
|
$channels[] = 'broadcast';
|
|
}
|
|
|
|
return $channels;
|
|
}
|
|
|
|
/**
|
|
* Get the mail representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return \Illuminate\Notifications\Messages\MailMessage
|
|
*/
|
|
public function toMail($notifiable)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return array
|
|
*/
|
|
public function toArray($notifiable)
|
|
{
|
|
return [
|
|
'from' => $this->message->sender->user_full_name,
|
|
'from_id' => $this->message->user_id,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the broadcastable representation of the notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @return BroadcastMessage
|
|
*/
|
|
public function toBroadcast($notifiable)
|
|
{
|
|
return new BroadcastMessage([
|
|
'title' => __('essentials::lang.new_message'),
|
|
'body' => strip_tags(__('essentials::lang.new_message_notification', ['sender' => $this->message->sender->user_full_name])),
|
|
'link' => action([\Modules\Essentials\Http\Controllers\EssentialsMessageController::class, 'index']),
|
|
]);
|
|
}
|
|
}
|