akaunting/app/Events/Auth/LandingPageShowing.php
2020-07-26 19:47:23 +03:00

23 lines
309 B
PHP

<?php
namespace App\Events\Auth;
use Illuminate\Queue\SerializesModels;
class LandingPageShowing
{
use SerializesModels;
public $user;
/**
* Create a new event instance.
*
* @param $user
*/
public function __construct($user)
{
$this->user = $user;
}
}