@php
$overtimes = json_decode($payslip->overtime);
@endphp
@foreach ($overtimes as $overtime)
{!! Form::label('rate', $overtime->title . ' ' . __('Rate'), ['class' => 'form-label']) !!}
{!! Form::text('rate[]', $overtime->rate, ['class' => 'form-control']) !!}
{!! Form::hidden('rate_id[]', $overtime->id, ['class' => 'form-control']) !!}
{!! Form::label('hours', $overtime->title . ' ' . __('Hours'), ['class' => 'form-label']) !!}
{!! Form::text('hours[]', $overtime->hours, ['class' => 'form-control']) !!}
@endforeach