📜  laravel 模型 where - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:24.248000             🧑  作者: Mango

代码示例6
$post = Post::where('id', $id);

$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get();