This commit is contained in:
Cüneyt Şentürk
2023-08-23 15:20:20 +03:00
parent b536ea82d1
commit e66aea0567
8 changed files with 171 additions and 171 deletions

View File

@@ -1,20 +1,20 @@
<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class TransactionDeleted extends Event
{
public $transaction;
/**
* Create a new event instance.
*
* @param $transaction
*/
public function __construct($transaction)
{
$this->transaction = $transaction;
}
}
<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class TransactionDeleted extends Event
{
public $transaction;
/**
* Create a new event instance.
*
* @param $transaction
*/
public function __construct($transaction)
{
$this->transaction = $transaction;
}
}