gpt4 book ai didi

html - 从 Laravel 4 的表中隐藏特定用户的最佳方法是什么?

转载 作者:可可西里 更新时间:2023-11-01 08:46:50 25 4
gpt4 key购买 nike

我想知道从表中隐藏特定用户的最佳方法?

在我的例子中,我想隐藏不再活跃的用户。

在 Controller 中查询

$users = User::where('id', '!=', '#id of disabled user')->get();

查看

@foreach ($users as $user)

// print the table

@endforeach

我接近了吗?

Sample Image

最佳答案

只是一个“普通”的 where 语句

$users = User::where('active', '!=', 2)->get();

关于html - 从 Laravel 4 的表中隐藏特定用户的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27046351/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com