Hey I am new to laravel. I have this html code
and this is what I have in the method.
Is their a way to see the request? in the view? in the developer tools? I just want to see the request.
You can dump the request in controller, or return the request as json
request
controller
return
json
public function someFun($request) { // dump $request dd($request); // return as json return response()->json($request); }