21 lines
521 B
PHP
21 lines
521 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\PartnerWithdrawal;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class WithdrawalsApplyEvent implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public PartnerWithdrawal $withdrawal;
|
|
public function __construct(PartnerWithdrawal $withdrawal)
|
|
{
|
|
$this->withdrawal = $withdrawal;
|
|
}
|
|
}
|