特定のビュー/サイトにページネーションを設定しましたが、機能します。
問題は、php カウンターがあることです。
<?php $count = 0;?>
@foreach ($players as $player)
<?php $count++;?>
<tr>
<td>{{ $count }}. </td>
ページを切り替えるたびに、1から始まります。
どうすればそれを変更できますか?
getFrom
ページの最初のアイテムからカウントできるようにするには、Paginator インスタンスのメソッドのみが必要です。
<?php $count = $players->getFrom(); ?>
@foreach ($players as $player)
<tr>
<td>{{ $count++ }}. </td>
</tr>
@endforeach
<?php echo "Displaying ".$data->getFrom() ." - ".$data->getTo(). " of ".number_format($data->getTotal())." result(s)"; ?>
シンプルでエレガント:
@foreach ($players as $key => $player)
<tr>
<td>{{ $players->getFrom() + $key }}</td>
</tr>
@endforeach