File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Notifications/Events
Upload
[..]
NotificationSent.php (701 B)
Edit
Rename
Del
Edit: NotificationSent.php
<?php namespace Illuminate\Notifications\Events; use Illuminate\Bus\Queueable; use Illuminate\Queue\SerializesModels; class NotificationSent { 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 mixed $response The channel's response. */ public function __construct( public $notifiable, public $notification, public $channel, public $response = null, ) { } }
Simpan