akaunting/app/Events/Auth/LandingPageShowing.php

21 lines
282 B
PHP
Raw Permalink Normal View History

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