15 lines
244 B
PHP
15 lines
244 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\HelpdeskTicket;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
class DestroyHelpdeskTicket
|
|
{
|
|
use Dispatchable;
|
|
|
|
public function __construct(
|
|
public HelpdeskTicket $ticket,
|
|
) {}
|
|
} |