2021-09-10 08:07:08 -05:00
|
|
|
@isset($title)
|
|
|
|
|
<div class="tw-border-b tw-font-semibold">
|
|
|
|
|
{{ $title }}
|
|
|
|
|
</div>
|
|
|
|
|
@endisset
|
|
|
|
|
<div class="tw-flex tw-flex-wrap" @if(! $responsive) style="width: {{ $rowWidth }}px;" @endif {{ $attributes }}>
|
|
|
|
|
@foreach($graphs as $graph)
|
2021-11-30 19:21:41 -06:00
|
|
|
<x-graph
|
|
|
|
|
:type="$type"
|
|
|
|
|
:loading="$loading"
|
|
|
|
|
:aspect="$aspect"
|
|
|
|
|
:port="$port"
|
|
|
|
|
:device="$device"
|
|
|
|
|
:legend="$attributes->get('legend', 'no')"
|
|
|
|
|
:height="$attributes->get('height', 150)"
|
|
|
|
|
:vars="$graph"
|
|
|
|
|
{{ $attributes->class(['lg:tw-w-1/4 sm:tw-w-1/2 tw-w-full' => $responsive]) }}></x-graph>
|
2021-09-10 08:07:08 -05:00
|
|
|
@endforeach
|
|
|
|
|
</div>
|