request method laravel code example
Example 1: laravel add request
$request->all() + ['index' => 'value'];
Example 2: laravel get data from request
dd($request->all());
//print an array of the input name and the input value
$request->all() + ['index' => 'value'];
dd($request->all());
//print an array of the input name and the input value