File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Notifications/Events
Upload
[..]
BroadcastNotificationCreated.php (3.09 KB)
Edit
Rename
Del
NotificationFailed.php (710 B)
Edit
Rename
Del
NotificationSending.php (614 B)
Edit
Rename
Del
NotificationSent.php (701 B)
Edit
Rename
Del
Edit: 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 = [], ) { } }
Simpan