Replies: 2 comments
-
Feel free to PR this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Maybe here laravel-backup/src/Notifications/BaseNotification.php Lines 19 to 22 in 1ee00b9 public function applicationName(): string
{
$appEnv = config('app.env');
return (config('app.name') ?? config('app.url') ?? 'Laravel application') . ($appEnv ? '/'.$appEnv : '');
}
You can change that in config |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
May you please add the environment name to notifications, so we know what report is related to which? It's also needed for failed backup notifications and it's better to send the errors to logging channels instead of showing it in the notification itself.
Beta Was this translation helpful? Give feedback.
All reactions