/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Notifications
NameSizeModeActions
Channels/-0755rm
Console/-0755rm
Events/-0755rm
Messages/-0755rm
resources/-0755rm
Action.php4790644editdlrm
AnonymousNotifiable.php16430644editdlrm
ChannelManager.php39640644editdlrm
composer.json12160644editdlrm
DatabaseNotification.php28480644editdlrm
DatabaseNotificationCollection.php4810644editdlrm
HasDatabaseNotifications.php8010644editdlrm
LICENSE.md10750644editdlrm
Notifiable.php1200644editdlrm
Notification.php7680644editdlrm
NotificationSender.php74770644editdlrm
NotificationServiceProvider.php11630644editdlrm
RoutesNotifications.php13120644editdlrm
SendQueuedNotifications.php44870644editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Notifications/AnonymousNotifiable.php (1643B)
routes[$channel] = $route; return $this; } /** * Send the given notification. * * @param mixed $notification * @return void */ public function notify($notification) { app(Dispatcher::class)->send($this, $notification); } /** * Send the given notification immediately. * * @param mixed $notification * @return void */ public function notifyNow($notification) { app(Dispatcher::class)->sendNow($this, $notification); } /** * Get the notification routing information for the given driver. * * @param string $driver * @return mixed */ public function routeNotificationFor($driver) { return $this->routes[$driver] ?? null; } /** * Get the value of the notifiable's primary key. * * @return mixed */ public function getKey() { // } }