ufutx.dma/app/Events/WithdrawalsApplyEvent.php
2026-03-04 14:42:40 +08:00

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;
}
}