@extends('layout')
@section('content')
Mes Actual:@if(isset($content['fecha_actual'])) {{ $content['fecha_actual'] }} @endif
| Indicador |
Tipo Local |
@if(isset($content['cabeceras']))
@foreach($content['cabeceras'] as $cabecera)
{{ $cabecera }} |
@endforeach
@endif
@if(isset($content['data']))
@foreach($content['data'] as $row)
@foreach($row as $value)
@if(is_numeric($value))
@endif
| {{ $value }} |
@endforeach
@endforeach
@endif
@stop
@section('scripts')
@stop