phpvms/app/Events/PirepFiled.php
2017-12-02 10:55:17 -06:00

21 lines
382 B
PHP

<?php
namespace App\Events;
use App\Models\Pirep;
use Illuminate\Queue\SerializesModels;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
class PirepFiled
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $pirep;
public function __construct(Pirep $pirep)
{
$this->pirep = $pirep;
}
}