phpvms/app/Events/PirepPrefiled.php

16 lines
204 B
PHP

<?php
namespace App\Events;
use App\Models\Pirep;
class PirepPrefiled extends BaseEvent
{
public $pirep;
public function __construct(Pirep $pirep)
{
$this->pirep = $pirep;
}
}