@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | // Show the link details for the user |
30 | 30 | public function show($id) |
31 | 31 | { |
32 | - Log::debug('Route ' . Route::currentRouteName() . ' visited by IP Address ' . \Request::ip()); |
|
32 | + Log::debug('Route '.Route::currentRouteName().' visited by IP Address '.\Request::ip()); |
|
33 | 33 | |
34 | 34 | $details = FileLinks::where('link_hash', $id)->first(); |
35 | 35 | |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | // Notify the owner of the link that files were uploaded |
147 | 147 | public function notify(Request $request, $id) |
148 | 148 | { |
149 | - Log::debug('Route ' . Route::currentRouteName() . ' visited by IP Address ' . \Request::ip() . '. Submitted Data - ', $request->toArray()); |
|
149 | + Log::debug('Route '.Route::currentRouteName().' visited by IP Address '.\Request::ip().'. Submitted Data - ', $request->toArray()); |
|
150 | 150 | |
151 | 151 | $request->validate([ |
152 | 152 | '_complete' => 'required', |