21 lines
382 B
PHP
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;
|
|
}
|
|
}
|