@props(['rowIndex', 'colDate', 'timebills'])
<ul class="grid grid-cols-1 gap-1">
@foreach($timebills as $t)
<li wire:key="timeli{{$t['id']}}" class="relative inline-block col-span-1">
<x-filament::input.wrapper>
<x-filament::input type="text" wire:key="timein{{$t['id']}}" value="{{ $t['hours'] }}" />
</x-filament::input.wrapper>
<?php /*
<x-filament::button size="xs" wire:key="timebt{{$t['id']}}" wire:click="editTimebill({{ $t['id'] }})" outlined>
{{ $t['hours'] }}
{{ $this->timebillActions($t['id']) }}
</x-filament::button>
*/ ?>
</li>
@endforeach
</ul>
@props(['rowIndex', 'colDate', 'timebills'])
<ul class="grid grid-cols-1 gap-1">
@foreach($timebills as $t)
<li wire:key="timeli{{$t['id']}}" class="relative inline-block col-span-1">
<x-filament::input.wrapper>
<x-filament::input type="text" wire:key="timein{{$t['id']}}" value="{{ $t['hours'] }}" />
</x-filament::input.wrapper>
<?php /*
<x-filament::button size="xs" wire:key="timebt{{$t['id']}}" wire:click="editTimebill({{ $t['id'] }})" outlined>
{{ $t['hours'] }}
{{ $this->timebillActions($t['id']) }}
</x-filament::button>
*/ ?>
</li>
@endforeach
</ul>