mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 11:45:18 -05:00
13 lines
279 B
PHP
13 lines
279 B
PHP
@props([
|
|
'current',
|
|
'needed',
|
|
'showEdit' => false,
|
|
])
|
|
|
|
<div {{ $attributes->merge(['class' => 'flex gap-2']) }}>
|
|
@for($i = 0;$i < $needed;++$i)
|
|
<div class="h-2 w-full {{ $i < $current ? 'bg-sky-400' : 'bg-gray-800 ' }}">
|
|
|
|
</div>
|
|
@endfor
|
|
</div> |