我有一组结果(例如[1,2,3,4,5,6,7,8,9,10,11])。
我希望将其显示为包含3列的1行
1|5|9
2|6|10
3|7|11
4|8|
我得到的是1行4列
1|4|7
2|5|8
3|6|9
10|
11|
在我添加第12个对象之前,我得到1行3列
1|5|9
2|6|10
3|7|11
4|8|12
我在刀片模板中的代码
<!-- partials/tables/table_list.blade.php -->
@section('tables')
<?php $chunkSize = floor(count($tables) / 3); ?>
<section id="tables-overview">
<div class="row">
@foreach ($tables->chunk($chunkSize , 1) as $chunk)
<div class="col-md-4">
@include('partials.tables.table_chunk')
</div>
@endforeach
</div>
</section>
@endsection
<!-- partials/tables/table_chunk.blade.php -->
<table class="table table-responsive">
<thead>
<tr>
<th class="text-center">@lang('table.identifier')</th>
<th class="text-center">@lang('table.property')</th>
<th class="text-center">
@permission('manage-tables')
<a href="{{ route('CreateTable') }}">@lang('action.create')</a>
@endpermission
</th>
</tr>
</thead>
<tbody>
@foreach ($chunk as $table)
<tr>
<td class="text-center">{{ $table->getId() }}</td>
<td class="text-center">{{ $table->getProperty() }}</td>
<td class="text-center">
@permission('manage-tables')
<a class="btn btn-primary" href="{{ route('UpdateTable', ['id' => $table->getId()]) }}">@lang('action.update')</a>
@endpermission
</td>
</tr>
@endforeach
</tbody>
</table>
当$ tables的数量可以除以3(我想要的列数)时,我得到3个块。如果不是,我得到3个块+剩下的1或2个对象,它们都被放入第4列。我可以像here那样水平放置它们,但我发现这是“奇怪的”。阅读列表时,首先从上到下阅读,然后从左到右阅读。
更新 我也尝试使用 Huzaib Shafi 建议的ceil()。但后来我得到了
4 objects (funny looking)
1|3|
2|4|
5 objects (better looking)
1|3|5
2|4
这也不是我想要的100%但非常接近它。我接下来会尝试 Homam Alhaytham 的建议。
答案 0 :(得分:0)
当您floor
除法结果时,您得到的数字越小。
说明: floor(11/3)= 3.因此,您的结果一次被分成3个(导致; [3,3,3,2]),但是我们需要[4 ,4,3]。
所以你需要ceil
它。给你4,结果就是结果。
<?php $chunkSize = ceil(count($tables) / 3); ?>
答案 1 :(得分:0)
通过获取数据库数据获取$ items并使用循环示例
$c=0;
echo '<div class="row">';
while(bla bla bla ..){
// counter
$c++;
echo '<div class="col-md-4">
some thing
</div>';
if(fmod($c,3)==0){
echo '</div><div class="row">';
}
}
echo '</div>';
这里我用你的列上的fmod($ c,3)3号码而fmod返回0如果$ c是6,9,12,15,18 .....
答案 2 :(得分:-2)
使用array_chunk。
假设您有以下数组:
[
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
];
在.blade.php
文件中,您可以执行以下操作:
@section('tables')
<section id="tables-overview">
<div class="row">
@foreach (array_chunk($tables, 3) as $chunk)
<div class="col-md-4">
@foreach($chunk as $key => $value)
//@include('partials.tables.table_chunk')
// No need to include anything here
// just write your table instead of including
@endforeach
</div>
@endforeach
</div>
</section>
@endsection