create new thing
This commit is contained in:
19
app/Events/V3/Dashboard/Mission/FinishRequestEvent.php
Normal file
19
app/Events/V3/Dashboard/Mission/FinishRequestEvent.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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 FinishRequestEvent
|
||||
{
|
||||
use Dispatchable, InteractsWithSockets, SerializesModels;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*/
|
||||
public function __construct(public Mission $mission){}
|
||||
}
|
||||
Reference in New Issue
Block a user