Route::get('testit', function (Illuminate\Http\Request $request) {
dd($request->all());
});
http://youriste/testit?tld[]=art&tld[]=blah
array:1 [▼
"tld" => array:2 [▼
0 => "blah"
1 => "art"
]
]
I am on 5.1.23 but it shouldn't matter.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community