phpvms/app/Events/PirepUpdated.php

16 lines
203 B
PHP

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