19 lines
360 B
PHP
19 lines
360 B
PHP
<?php
|
|
|
|
namespace App\Events\Packages;
|
|
|
|
use App\Models\TenantPackage;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class TenantPackageEventLimitReached
|
|
{
|
|
use Dispatchable;
|
|
use SerializesModels;
|
|
|
|
public function __construct(
|
|
public TenantPackage $tenantPackage,
|
|
public int $limit,
|
|
) {}
|
|
}
|