@props(['labels', 'datas'])
@php
$convertedLabels = [];
foreach ($labels as $label) {
if (preg_match('/^\d{4}-\d{2}-\d{2}$/', $label)) {
$parts = explode('-', $label);
$year = (int) $parts[0];
$month = (int) $parts[1];
$day = (int) $parts[2];
$jalaliDate = gregorian_to_jalali($year, $month, $day, '/');
$convertedLabels[] = $jalaliDate;
} else {
$convertedLabels[] = $label;
}
}
@endphp
@pushOnce('footer')
@endPushOnce