akaunting/app/Events/Banking/TransactionDeleting.php

21 lines
321 B
PHP
Raw Normal View History

2023-08-23 15:20:20 +03:00
<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class TransactionDeleting extends Event
{
public $transaction;
/**
* Create a new event instance.
*
* @param $transaction
*/
public function __construct($transaction)
{
$this->transaction = $transaction;
}
}