We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3e5fc commit 1b03ae2Copy full SHA for 1b03ae2
app/Http/Controllers/Admin/Settings/MailController.php
@@ -4,7 +4,6 @@
4
5
use Exception;
6
use Illuminate\Http\Request;
7
-use Illuminate\Support\Facades\Log;
8
use Illuminate\Support\Facades\Notification;
9
use Illuminate\View\View;
10
use Illuminate\Http\RedirectResponse;
@@ -131,7 +130,6 @@ public function test(Request $request): RedirectResponse
131
130
}
132
133
try {
134
- Log::debug('Sending test message to ' . $request->user()->email);
135
Notification::route('mail', $request->user()->email)
136
->notify(new MailTested($request->user()));
137
} catch (Exception $exception) {
0 commit comments