added account events

This commit is contained in:
Cihan Şentürk
2023-08-23 11:51:34 +03:00
committed by GitHub
parent fe6b6188b9
commit 271b61808b
9 changed files with 149 additions and 0 deletions

View File

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