D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Notifications
/
Filename :
Notification.php
back
Copy
<?php namespace Illuminate\Notifications; use Illuminate\Queue\SerializesModels; class Notification { use SerializesModels; /** * The unique identifier for the notification. * * @var string */ public $id; /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn() { return []; } }