dd($request->all())
Apr 10, 2018
9
Level 1
empty $request
Hello! https://paste.laravel.io/b378f2db-0d00-4bb3-ad44-eff44fdd642d php code, and https://paste.laravel.io/f163239d-af07-4ab4-bc37-be6a17af1788 view, and Route
Route::post('/tools/support/post',['uses'=>'PublicToolsSupportPost@execute','as'=>'form.tools.support']);
why returned dd empty $request?
Level 67
I think it's the enctype of your form (text/plain). Remove it or try using application/x-www-form-urlencoded (which is the default if you don't have an enctype attribute)
Edit: I see you found that
1 like
Please or to participate in this conversation.