please help me to solve this problem that how to die and dump 2D array in laravel.. i tried this but not working
$arr=collect($request->input('title['+$i+']'));
dd($arr->count());
dd(
// All these do the same thing
$request->title,
$request['title'],
$request->input('title'),
$request->get('title'),
// I love the global helper
request('title'),
// count items in the array
count(request('title'))
);