I'm trying to access a multidimensional Json via laravel and I'm not getting the expected result, I need to access phases-> gaming-> date-> 2017-05-13 I'll post the code below to find a solution :
My array:
Controller.php
publicfunctionindex(){//JSONDOSARQUIVOS$arquivo_json=file_get_contents('http://jsuol.com.br/c/monaco/utils/gestor/commons.js?file=commons.uol.com.br/sistemas/esporte/modalidades/futebol/campeonatos/dados/2017/30/dados.json');$dadosJson=json_decode($arquivo_json,true);returnview('ler',compact('dadosJson'));}
view.php
@foreach($dadosJson['fases']as$equipes)@foreach($equipes['jogos']as$jogos){{$jogos['nome']}}@endforeach@endforeach
Return
Could someone give me a hand?
Thank you!