Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Notifications
/
Messages
:
DatabaseMessage-20250317090243.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Illuminate\Notifications\Messages; class DatabaseMessage { /** * The data that should be stored with the notification. * * @var array */ public $data = []; /** * Create a new database message. * * @param array $data * @return void */ public function __construct(array $data = []) { $this->data = $data; } }