55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\RestaurantDelivery\Events;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Modules\RestaurantDelivery\Models\DeliveryRating;
|
|
|
|
class RiderRated implements ShouldBroadcast
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public function __construct(
|
|
public readonly DeliveryRating $rating
|
|
) {}
|
|
|
|
/**
|
|
* Get the channels the event should broadcast on.
|
|
*/
|
|
public function broadcastOn(): array
|
|
{
|
|
return [
|
|
new PrivateChannel("rider.{$this->rating->rider_id}.ratings"),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the data to broadcast.
|
|
*/
|
|
public function broadcastWith(): array
|
|
{
|
|
return [
|
|
'rating_id' => $this->rating->id,
|
|
'delivery_id' => $this->rating->delivery_id,
|
|
'rider_id' => $this->rating->rider_id,
|
|
'overall_rating' => $this->rating->overall_rating,
|
|
'has_review' => ! empty($this->rating->review),
|
|
'created_at' => $this->rating->created_at->toIso8601String(),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* The event's broadcast name.
|
|
*/
|
|
public function broadcastAs(): string
|
|
{
|
|
return 'rider.rated';
|
|
}
|
|
}
|