41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Message;
|
|
use Illuminate\Broadcasting\Channel;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class MessageSent implements ShouldBroadcastNow
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public function __construct(public Message $message){}
|
|
|
|
public function broadcastOn(): array
|
|
{
|
|
return [
|
|
new Channel('chat.' . $this->message->receiver_id),
|
|
];
|
|
}
|
|
|
|
public function broadcastWith(): array
|
|
{
|
|
return [
|
|
'id' => $this->message->id,
|
|
'body' => $this->message->body,
|
|
'attachment' => $this->message->attachment,
|
|
'attachment_type' => $this->message->attachment_type,
|
|
'created_at' => $this->message->created_at->format('H:i'),
|
|
'sender' => [
|
|
'id' => $this->message->sender->id,
|
|
'name' => $this->message->sender->name,
|
|
'avatar' => $this->message->sender->profile_photo_url ?? null,
|
|
],
|
|
];
|
|
}
|
|
}
|