15 lines
240 B
PHP
15 lines
240 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\HelpdeskReply;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
class DestroyHelpdeskReply
|
|
{
|
|
use Dispatchable;
|
|
|
|
public function __construct(
|
|
public HelpdeskReply $reply,
|
|
) {}
|
|
} |