create sending webservices to panjereh vahed

This commit is contained in:
2025-11-11 14:05:07 +03:30
parent 2993adf5cd
commit e666e4c277
13 changed files with 246 additions and 156 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Events\V3\Dashboard\Harim;
use App\Models\Harim;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class PaymentExecutedEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* Create a new event instance.
*/
public function __construct(public Harim $harim){}
}