how to read request laravel code example
Example 1: laravel get all inputs from request
$input = $request->all();
Example 2: laravel get data from request
dd($request->all());
//print an array of the input name and the input value
$input = $request->all();
dd($request->all());
//print an array of the input name and the input value