Files
wticreatorstudio/Modules/MultiVendor/Events/SellerShippingConfigEvent.php
T
2024-02-12 22:54:20 -05:00

27 lines
427 B
PHP

<?php
namespace Modules\MultiVendor\Events;
use Illuminate\Queue\SerializesModels;
class SellerShippingConfigEvent
{
use SerializesModels;
public $user_id;
public function __construct($user_id)
{
$this->user_id = $user_id;
}
/**
* Get the channels the event should be broadcast on.
*
* @return array
*/
public function broadcastOn()
{
return [];
}
}