migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<?php
namespace App\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class MultiPaymentProcessed
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $payments;
public $business_id;
public $reference_id;
public $platform;
public $receiveAmount;
public $party_id;
/**
* Create a new event instance.
*/
public function __construct($payments, $reference_id, $platform, $receiveAmount = 0, $party_id = null)
{
$this->payments = $payments;
$this->reference_id = $reference_id;
$this->platform = $platform;
$this->receiveAmount = $receiveAmount;
$this->party_id = $party_id;
}
/**
* Get the channels the event should broadcast on.
*
* @return array<int, \Illuminate\Broadcasting\Channel>
*/
public function broadcastOn(): array
{
return [
new PrivateChannel('channel-name'),
];
}
}