web-mooc/app/Events/PaymentCompleted.php
Baghiz Zuhdi Adzin 1f8efdccc4 pembayaran
2026-01-21 15:34:54 +07:00

20 lines
342 B
PHP

<?php
namespace App\Events;
use App\Models\VAPayment;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class PaymentCompleted
{
use Dispatchable, SerializesModels;
public VAPayment $payment;
public function __construct(VAPayment $payment)
{
$this->payment = $payment;
}
}