Result of a query stored in multi-dimension array, How to display these results in the view. The array example is as below.
I am using laravel framework, using blade in view to display results.
I have tried foreach as below,
@foreach($adverts as $advert)
@foreach($advert as $keyword)
{{$keyword}}
@endforeach
@endforeach
The above foreach didn't worked. I would like to access all the elements under "keywords" in my view.
Thanks for your answers in advance.
