2024-05-29 12:03:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
2024-07-04 17:21:36 +02:00
|
|
|
namespace App\Events\Billing;
|
2024-05-29 12:03:41 +02:00
|
|
|
|
|
|
|
|
use App\Models\Billing\Subscription;
|
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
2024-07-04 17:21:36 +02:00
|
|
|
class SubscriptionUpdated
|
2024-05-29 12:03:41 +02:00
|
|
|
{
|
|
|
|
|
use Dispatchable;
|
|
|
|
|
use InteractsWithSockets;
|
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new event instance.
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(public Subscription $subscription)
|
|
|
|
|
{
|
2024-07-04 17:21:36 +02:00
|
|
|
//
|
2024-05-29 12:03:41 +02:00
|
|
|
}
|
|
|
|
|
}
|