Найдите под кодом:
@foreach($paymentinvoice['items']['item']['0'] as $key => $invoice)
@if($key == 'description')
<td>{{$invoice}}</td>
@endif
@if($key == 'amount')
<td></td>
<td><i class="fa fa-inr"></i> {{$invoice}}</td>
@endif
@endforeach
Мне нужно отобразить данные описания, но массив получен как 0,1,2,3. Как разделить данные с помощью цикла foreach.
Найти под данными JSON:
[items] => Array
(
[item] => Array
(
[0] => Array
(
[id] => 1175
[type] => Hosting
[relid] => 857
[description] => Super Lite - udytfuy.com (04/09/2018 - 03/09/2021)
[amount] => 3924.00
[taxed] => 1
)
[1] => Array
(
[id] => 1176
[type] => Hosting
[relid] => 858
[description] => Ultimate - jdsgcsgjcfshg.com (04/09/2018 - 03/09/2021)
[amount] => 14004.00
[taxed] => 0
)
[2] => Array
(
[id] => 1177
[type] => DomainRegister
[relid] => 340
[description] => Domain Registration - jdsgcsgjcfshg.com - 1 Year/s (04/09/2018 - 03/09/2019)
[amount] => 637.70
[taxed] => 1
)
[3] => Array
(
[id] => 1178
[type] => DomainRegister
[relid] => 339
[description] => Domain Registration - udytfuy.com - 1 Year/s (04/09/2018 - 03/09/2019)
[amount] => 637.70
[taxed] => 1
)
)
)
Из приведенных выше данных JSON мне нужно отобразить описание и количество на основе "тип".