21 lines
419 B
PHP
21 lines
419 B
PHP
<?php
|
|
|
|
namespace App\Events\Packages;
|
|
|
|
use App\Models\EventPackage;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class EventPackageGuestThresholdReached
|
|
{
|
|
use Dispatchable;
|
|
use SerializesModels;
|
|
|
|
public function __construct(
|
|
public EventPackage $eventPackage,
|
|
public float $threshold,
|
|
public int $limit,
|
|
public int $used,
|
|
) {}
|
|
}
|