@foreach({{ pluralVariable }} as $key => $row)
    <tr>
        <th scope="row">
            <div class="custom-control custom-checkbox">
                <input type="checkbox" class="custom-control-input selectOne deleteCheck" id="customCheck{{$row->id}}"
                       value="{{$row->id}}" name="id[]">
                <label class="custom-control-label" for="customCheck{{$row->id}}"></label>
            </div>
        </th>
        <td>{{ $row->title }}</td>
        <td colspan="2">{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }}</td>
        <td>
            <div class="dropdown">
                <button class="icon_dots dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown"
                        aria-expanded="false">
                    <i class="bi bi-three-dots-vertical"></i>
                </button>
                <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
                    @if($row->deleted_at)
                        <a href="{{ route('{{ kebabPluralModule }}.restore', $row->id) }}" data-method="put"
                           class="icon rowAction dropdown-item"
                           title="{{ __('dashboard.restore') }}">
                            <img src="{{ asset('assets/admin/images/icons/restore.svg') }}" alt="{{ __('dashboard.restore') }}">
                            {{ __('dashboard.restore') }}
                        </a>
                        {{-- <a href="{{ route('{{ kebabPluralModule }}.destroy', $row->id) }}" data-method="delete"
                           class="icon rowAction dropdown-item"
                           title="{{ __('dashboard.delete') }}"><img
                                src="{{ asset('assets/admin/images/icons/close.svg') }}"
                                alt="{{ __('dashboard.delete') }}">
                            {{ __('dashboard.delete') }}
                        </a> --}}
                    @else
                        <a href="{{ route('{{ kebabPluralModule }}.edit', $row->id) }}" class="icon dropdown-item"
                           title="{{ __('dashboard.edit') }}">
                            <i class="bi bi-pen ml-1"></i>
                            {{ __('dashboard.edit') }}
                        </a>
                        <a href="{{ route('{{ kebabPluralModule }}.destroy', $row->id) }}" data-method="delete"
                           class="icon rowAction dropdown-item"
                           title="{{ __('dashboard.trash') }}">
                            <i class="bi bi-trash ml-1"></i>
                            {{ __('dashboard.trash') }}
                        </a>
                    @endif
                </div>
            </div>
        </td>
    </tr>
@endforeach

@if(count({{ pluralVariable }}) && {{ pluralVariable }}->hasPages())
    <tr class="tr-pagination">
        <td>{{ {{ pluralVariable }}->links('pagination::bootstrap-5') }}</td>
    </tr>
@endif

<script>
    $('.tr-pagination td').attr('colspan', $('tbody.response tr:first').children().length);
</script>
