I have a design like this,
In controller I am having this code,
$initials = $request->customer_initial;
$firstnames = $request->room_customerfirstname;
$lastnames = $request->room_customerlastname;
print_r($initials);
print_r($firstnames);
print_r($lastnames);
It give result as below,
Array
(
[0] => Mr
[1] => Ms
)
Array
(
[0] => Jeffrey
[1] => Taylor
)
Array
(
[0] => Way
[1] => Otwell
)
But what i want is like this in array format or collection format:
Mr Jeffrey Way
Mr Taylor Otwell
How can I get result like this?