html 如何在PHP中添加readmore选项,而数据来自数据库[已关闭]

db2dz4w8  于 2022-11-20  发布在  PHP
关注(0)|答案(1)|浏览(129)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。

14小时前就关门了。
Improve this question

<ul class="plan-features">
@foreach($plan->planServices as $planService)
    <li><span class="feature-count-text"> {{ $planService->services->name}}</span></li>
@endforeach
</ul>

我不知道它是怎么工作的我对幼虫是新手。

kokeuurv

kokeuurv1#

“分页”是你要找的。既然你的问题被标记为“Laravel”,我想你想知道如何用laravel进行分页。
你很幸运!Laravel支持分页,并且有一个很好的documentation

将查询生成器结果分页

use Illuminate\Support\Facades\DB;

然后您可以对结果进行分页,如

DB::table('table_name_here')->paginate(15);

为雄辩的结果编页码

use App\Models\User;
$users = User::paginate(15);

相关问题