@php
$startIndex = ($data->currentPage() - 1) * $data->perPage() + 1;
@endphp
@forelse($data as $key => $detail)
{{ $startIndex++ }} |
|
{!! $detail->name . $globalItemId !!} |
{!! $detail->category_name !!} |
{!! $detail->regularPrice !!} |
{!! $detail->offerPrice !!} |
{!! Form::select('wolt_product_id['.$detail->itemId.']', $woltMenuItems, $detail->wolt_product_id, array('class' => 'form-control _select2')) !!}
|
@empty
{{__('common.no_records')}} |
@endforelse