akaunting/app/Events/Common/DatesFormating.php

21 lines
295 B
PHP
Raw Normal View History

2023-06-21 16:03:40 +03:00
<?php
namespace App\Events\Common;
use App\Abstracts\Event;
class DatesFormating extends Event
{
public $request;
/**
* Create a new event instance.
*
* @param $request
*/
public function __construct($request)
{
$this->request = $request;
}
}