Akaunting/app/Events/Auth/LandingPageShowing.php

21 lines
282 B
PHP
Raw Normal View History

2020-07-26 16:47:23 +00:00
<?php
namespace App\Events\Auth;
2020-11-21 17:24:42 +00:00
use App\Abstracts\Event;
2020-07-26 16:47:23 +00:00
2020-11-21 17:24:42 +00:00
class LandingPageShowing extends Event
2020-07-26 16:47:23 +00:00
{
public $user;
/**
* Create a new event instance.
*
* @param $user
*/
public function __construct($user)
{
$this->user = $user;
}
}