add laravel 13 support

This commit is contained in:
2026-05-01 15:37:33 +03:30
parent 7ddb14448f
commit 864a01df1e
21 changed files with 1772 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace Shetabit\Payment\Events;
use Illuminate\Queue\SerializesModels;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Shetabit\Multipay\Contracts\DriverInterface;
use Shetabit\Multipay\Contracts\ReceiptInterface;
use Shetabit\Multipay\Invoice;
class InvoiceVerifiedEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $receipt;
public $driver;
public $invoice;
/**
* InvoiceVerifiedEvent constructor.
*
* @param ReceiptInterface $receipt
* @param DriverInterface $driver
* @param Invoice $invoice
*/
public function __construct(ReceiptInterface $receipt, DriverInterface $driver, Invoice $invoice)
{
$this->receipt = $receipt;
$this->driver = $driver;
$this->invoice = $invoice;
}
}