Files
Paymenter-Version-Tracks/app/Events/Cart/Updating.php
Muhammad Tamir b3933b9960 v1.4.0
2025-11-14 10:59:24 +07:00

19 lines
381 B
PHP

<?php
namespace App\Events\Cart;
use App\Models\Cart;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class Updating
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* Create a new event instance.
*/
public function __construct(public Cart $cart) {}
}