akaunting/app/Events/Banking/TransactionDeleted.php
Cüneyt Şentürk e66aea0567 typo
2023-08-23 15:20:20 +03:00

21 lines
320 B
PHP

<?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;
}
}