16 lines
365 B
PHP
16 lines
365 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\DocumentSetting;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class DocumentSettingsUpdated
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public function __construct(public DocumentSetting $settings) {}
|
|
}
|