22 lines
310 B
PHP
22 lines
310 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Withdraw;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* 提现审核完成事件
|
|
*/
|
|
class WithdrawCompleted
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $withdraw;
|
|
|
|
public function __construct(Withdraw $withdraw)
|
|
{
|
|
$this->withdraw = $withdraw;
|
|
}
|
|
}
|