0
0
Files
Babyclass/app/Events/Lottery.php
2020-08-04 10:09:42 +08:00

23 lines
326 B
PHP

<?php
namespace App\Events;
use App\Models\LotteryLog;
use Illuminate\Queue\SerializesModels;
class Lottery
{
use SerializesModels;
public $log;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(LotteryLog $log)
{
$this->log = $log;
}
}