D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
erp.dentostock.com
/
app
/
Events
/
Filename :
CompanySettingEvent.php
back
Copy
<?php namespace App\Events; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class CompanySettingEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $html; /** * Create a new event instance. */ public function __construct($html) { $this->html = $html; } }