akaunting/app/Events/Banking/AccountCreated.php

21 lines
355 B
PHP
Raw Normal View History

2023-08-23 11:51:34 +03:00
<?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;
}
}