phpvms/app/Events/PirepFiled.php
2018-03-19 20:50:40 -05:00

20 lines
381 B
PHP

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