19 lines
381 B
PHP
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 Creating
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(public Cart $cart) {}
|
|
}
|