This commit is contained in:
paoloar77
2024-11-28 17:35:14 +01:00
parent 5a8eb2ed55
commit 4aa31ed09a

View File

@@ -45,15 +45,34 @@
<td>{{ $articolo->Titolo }}</td>
<td>{{ \Carbon\Carbon::parse($articolo->DataPubblicazione)->format('d/m/Y') }}</td>
<td>{{ $articolo->Ean13 }}</td>
<td>{{ $articolo->rank3M }}</td>
<td>{{ $articolo->rank6M }}</td>
<td>{{ $articolo->rank1Y }}</td>
<td>{{ \Carbon\Carbon::parse($articolo->ultimoOrdine)->format('d/m/Y') }}</td>
<td>{{ $articolo->totaleVenduto }}</td>
<td>{{ $articolo->totaleVendutoUltimoMese }}</td>
<td>{{ $articolo->totaleVendutoUltimi6Mesi }}</td>
<td>{{ $articolo->totaleVendutoUltimoAnno }}</td>
<td>{{ $articolo->totaleVendutoUltimi2Anni }}</td>
@if (isset($articolo->rank3M))
<td>{{ $articolo->rank3M }}</td>
@endif
@if (isset($articolo->rank6M))
<td>{{ $articolo->rank6M }}</td>
@endif
@if (isset($articolo->rank1Y))
<td>{{ $articolo->rank1Y }}</td>
@endif
@if (isset($articolo->ultimoOrdine))
<td>{{ \Carbon\Carbon::parse($articolo->ultimoOrdine)->format('d/m/Y') }}</td>
@endif
@if (isset($articolo->totaleVenduto))
<td>{{ $articolo->totaleVenduto }}</td>
@endif
@if (isset($articolo->totaleVendutoUltimoMese))
<td>{{ $articolo->totaleVendutoUltimoMese }}</td>
@endif
@if (isset($articolo->totaleVendutoUltimi6Mesi))
<td>{{ $articolo->totaleVendutoUltimi6Mesi }}</td>
@endif
@if (isset($articolo->totaleVendutoUltimoAnno))
<td>{{ $articolo->totaleVendutoUltimoAnno }}</td>
@endif
@if (isset($articolo->totaleVendutoUltimi2Anni))
<td>{{ $articolo->totaleVendutoUltimi2Anni }}</td>
@endif
</tr>
@endif
@endforeach