20 lines
437 B
PHP
20 lines
437 B
PHP
<?php
|
|
|
|
namespace App\Events\V3\Dashboard\Mission;
|
|
|
|
use App\Models\Harim;
|
|
use App\Models\Mission;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class SendDataToFMSEvent
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(public Mission $mission){}
|
|
}
|