2017-12-03 00:55:17 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
|
|
|
use App\Models\Pirep;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
2018-02-21 12:33:09 +08:00
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2017-12-03 00:55:17 +08:00
|
|
|
|
|
|
|
class PirepRejected
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
|
|
|
|
public $pirep;
|
|
|
|
|
|
|
|
public function __construct(Pirep $pirep)
|
|
|
|
{
|
|
|
|
$this->pirep = $pirep;
|
|
|
|
}
|
|
|
|
}
|