@foreach ($data as $k => $data)
@php
if (decrypt($data['color']) == 'RED') {
$bg = 'rgb(253,208,208)';
} elseif (decrypt($data['color']) == 'GREEN') {
$bg = 'rgb(60, 179, 113)';
} else {
$bg = '#E8E6E5';
}
if ($data['title'] == '') {
$string = $data['content'];
} else {
$string = (string) $data['title'];
}
@endphp
@if (app()->getLocale() == 'en') {{ Str::substr(decrypt($data['month_name']), 0, 3) }} @else {{ Str::substr(decrypt($data['month_name']), 0, 4) }} @endif
{{ decrypt($string) }}
@endforeach