Implement package limit notification system
This commit is contained in:
15
app/Events/Packages/EventPackageGalleryExpired.php
Normal file
15
app/Events/Packages/EventPackageGalleryExpired.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Packages;
|
||||
|
||||
use App\Models\EventPackage;
|
||||
use Illuminate\Foundation\Events\Dispatchable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class EventPackageGalleryExpired
|
||||
{
|
||||
use Dispatchable;
|
||||
use SerializesModels;
|
||||
|
||||
public function __construct(public EventPackage $eventPackage) {}
|
||||
}
|
||||
Reference in New Issue
Block a user