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