@php
$dataItemsBaseDatos = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 1);
$rowspanBaseDatos = count($dataItemsBaseDatos);
$dataItemsAlojamiento = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 2);
$rowspanAlojamiento = count($dataItemsAlojamiento);
$dataItemsAutenticacion = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 3);
$rowspanAutenticacion = count($dataItemsAutenticacion);
$dataItemsVisualizacionDatos = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 4);
$rowspanVisualizacionDatos = count($dataItemsVisualizacionDatos);
$dataItemsBaseDatosExterna = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 5);
$rowspanBaseDatosExterna = count($dataItemsBaseDatosExterna);
$dataItemsCargaDatos = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 6);
$rowspanCargaDatos = count($dataItemsCargaDatos);
$dataItemsAPIs = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 7);
$rowspanAPIs = count($dataItemsAPIs);
$dataItemsOtros = $datasheet->datasheetCaracteristicaPrincipalActivas->where('tipo', 8);
$rowspanOtros = count($dataItemsOtros);
@endphp
@if ($rowspanBaseDatos > 0)
| Base de Datos |
{!! html_entity_decode($dataItemsBaseDatos->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsBaseDatos->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Base de Datos |
No hay datos |
@endif
@if ($rowspanAlojamiento > 0)
| Alojamiento |
{!! html_entity_decode($dataItemsAlojamiento->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsAlojamiento->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Alojamiento |
No hay datos |
@endif
@if ($rowspanAutenticacion > 0)
| Autenticación |
{!! html_entity_decode($dataItemsAutenticacion->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsAutenticacion->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Autenticación |
No hay datos |
@endif
@if ($rowspanVisualizacionDatos > 0)
| Visualización de Datos |
{!! html_entity_decode($dataItemsVisualizacionDatos->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsVisualizacionDatos->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Visualización de Datos |
No hay datos |
@endif
@if ($rowspanBaseDatosExterna > 0)
| Conexión a Bases de Datos Externas |
{!! html_entity_decode($dataItemsBaseDatosExterna->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsBaseDatosExterna->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Conexión a Bases de Datos Externas |
No hay datos |
@endif
@if ($rowspanCargaDatos > 0)
| Carga de Datos |
{!! html_entity_decode($dataItemsCargaDatos->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsCargaDatos->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Carga de Datos |
No hay datos |
@endif
@if ($rowspanAPIs > 0)
| Integración con APIs |
{!! html_entity_decode($dataItemsAPIs->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsAPIs->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Integración con APIs |
No hay datos |
@endif
@if ($rowspanOtros > 0)
| Otros |
{!! html_entity_decode($dataItemsOtros->first()->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@foreach ($dataItemsOtros->skip(1) as $item)
| {!! html_entity_decode($item->descripcion ?? '', ENT_QUOTES, 'UTF-8') !!} |
@endforeach
@else
| Otros |
No hay datos |
@endif