SpotUpdated.php
389 Bytes
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/1/26
* Time: 14:09
*/
namespace App\Events\Backend\Access\Spot;
use Illuminate\Queue\SerializesModels;
class SpotUpdated
{
use SerializesModels;
/**
* @var
*/
public $spot;
/**
* @param $user
*/
public function __construct($spot)
{
$this->spot = $spot;
}
}