Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
app
/
Events
:
CompanyCreated.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Events; use App\Events\Event; use App\Models\Company; use Illuminate\Queue\SerializesModels; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; class CompanyCreated extends Event { use SerializesModels; /** * Create a new event instance. * * @return void */ public function __construct(Company $company) { $this->company = $company; } /** * Get the channels the event should be broadcast on. * * @return array */ public function broadcastOn() { return []; } }