Akaunting/app/Events/Common/ImportViewCreating.php

22 lines
292 B
PHP

<?php
namespace App\Events\Common;
use App\Abstracts\Event;
class ImportViewCreating extends Event
{
public $view;
/**
* Create a new event instance.
*
* @param $view
*
*/
public function __construct($view)
{
$this->view = $view;
}
}