@props(['chartData', 'emptyMessage' => 'No results found'])
@if($chartData->count())
@php $max = max($chartData->max('value') ?: 1, 1); @endphp @foreach($chartData as $point)
{{ Str::limit($point->label, 8) }}
@endforeach
@else @endif