@php
$startIndex = ($data->currentPage() - 1) * $data->perPage() + 1;
@endphp
@forelse($data as $key => $detail)
@php
$checked = $detail->status == '1' ? 'checked' : '';
@endphp
{{ $startIndex++ }} |
{{ $detail->name }} |
{{ $detail->code }} |
|
|
|
@empty
{{ __('common.no_records') }} |
@endforelse