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,21 +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;
}
}
<?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;
}
}