create new thing

This commit is contained in:
2025-08-25 13:25:49 +03:30
parent e30b19ab79
commit e3cf21ac27
5 changed files with 160 additions and 0 deletions

View 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){}
}