Files
investbrain/resources/views/components/fifty-two-week-range.blade.php
T
hackerESQ 10b6c7cda2 wip
2024-08-26 22:13:00 -05:00

17 lines
376 B
PHP

<span
class=""
style="width:90em;overflow: hidden; white-space: nowrap;"
title="{{ Number::currency($low) }} - {{ Number::currency($high) }}"
>
@for ($x = 0; $x < 10; $x++)
@if ((($current - $low) * 100) / ($high - $low) > ($x * 10))
&#9679;
@else
&#9675;
@endif
@endfor
</span>