I have two different arrays and I want to create a table with these two arrays.
But I don't know how to realize this in just one foreach loop with Laravel Blade.
The first array is from a external api and the second array was a Laravel Collection I converted to an array with - toArray()
As you can see both arrays have 10 elements and in my table I want to have each row with columns from both arrays.
array:10 [▼
0 => {#193 ▼
+"instanceID": "Ex1"
+"alias": null
+"displayName": "Ex1"
+"instanceHost": "exserver"
+"startMode": "automatic"
+"processID": 2960
+"status": "running"
+"startStopError": null
}
1 => {#194 ▶}
2 => {#195 ▶}
3 => {#196 ▶}
4 => {#197 ▶}
5 => {#198 ▶}
6 => {#199 ▶}
7 => {#200 ▶}
8 => {#201 ▶}
9 => {#202 ▶}
]
array:10 [▼
0 => array:8 [▼
"id" => 1
"name" => "Example"
"street" => "Exstreet 1"
"postalcode" => 1234
"city" => "Town"
"created_at" => "2015-11-05 16:18:02"
"updated_at" => "2015-11-05 16:53:58"
"status" => "Silver"
]
1 => array:8 [▶]
2 => array:8 [▶]
3 => array:8 [▶]
4 => array:8 [▶]
5 => array:8 [▶]
6 => array:8 [▶]
7 => array:8 [▶]
8 => array:8 [▶]
9 => array:8 [▶]
]
Can you help me?
Greets Wipsly