19 lines
397 B
PHP
19 lines
397 B
PHP
<?php
|
|
|
|
namespace App\Events\CartItem;
|
|
|
|
use App\Models\CartItem;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class Deleting
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(public CartItem $cartItem) {}
|
|
}
|