私はLaravel 5.2アプリケーションを持っています。私はデフォルトのLaravelページネーションを使用しています。すべての機能は機能しますが、テーブルの最後の行とページネーションリンクの間にかなりの空きスペースがあります。画像の例を参照してください: Laravel 5.2ページング:テーブルからの距離を縮める方法
空きスペースを少し少なくするにはどうすればよいですか?
<table class="table table-striped table-bordered table-list">
<thead>
<tr>
<th class="hidden-xs">Auction id</th>
<th>Name</th>
<th>Description</th>
<th><em class="fa fa-cog"></em>Actions</th>
</tr>
</thead>
<tbody>
@foreach($events as $event)
<tr>
<td align="center" class="hidden-xs">{{ $auction->id }}</td>
<td>{{ $event>name }}</td>
<td>{{ $event->description }}</td>
<td align="center">
<div>
<a href="{!! route('event_index', ['id' => $event->id ]) !!}" type="button" class="btn btn-sm btn-success"><em class="fa fa-list-alt"></em></a>
</div>
</tr>
@endforeach
</tbody>
</table>
<div class="text-right">
{{ $events->render() }}
</div>
をあなたには、いくつかのコードを共有することができます:ここで
は、私が使用しているコードのですか? – ggderas