OK. Maybe i need to get back to basics here. These are the two dd($data) dumps i sent to front end, one is json, one is an array.
I should be iterating foreach over the SECOND dump?
@foreach ($data as $clients)
@foreach ($clients as $client)
{{ $client->ClientID }}
@endforeach
@endforeach
JSON
"[{"ClientID":64,"Name":"aas ","Soil Balance":0},{"ClientID":3092,"Name":"sdsa","Soil Balance":0},{"ClientID":39,"Name":"rrrt","Soil Balance":0},{"ClientID":3079,"Name":"rrrt","Soil Balance":0}]"
Array
array:85 [▼
0 => array:3 [▼
"ClientID" => 64
"Name" => "aas "
"Soil Balance" => 0
]
1 => array:3 [▼
"ClientID" => 3092
"Name" => "sdsa"
"Soil Balance" => 0
]
2 => array:3 [▼
"ClientID" => 39
"Name" => "rrrt"
"Soil Balance" => 0
]