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