Route::group(['prefix' => 'user'], function() {
Route::get('/{courseId}', function(Request $request) {
Log::info(json_encode($request));
});
});
when i navigate to: baseURL/user/1
I get an empty request in my logs
[2015-11-06 22:09:48] local.INFO: {"attributes":{},"request":{},"query":{},"server":{},"files":{},"cookies":{},"headers":{}}
How can this be? Help please.
Thank you
-Zach
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community