24 lines
371 B
PHP
24 lines
371 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\CardPayment;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class CardOrderPaid
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $card_payment;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(CardPayment $card_payment)
|
|
{
|
|
$this->card_payment = $card_payment;
|
|
}
|
|
}
|