$table = ExampleTable::all();
$elem = $table->find(1);
虽然上述工作,但后退不会:
$table = ExampleTable::all();
$elem = $table->where('id', 1)->first();
除了DB::table
之外,有没有办法实现后者?
答案 0 :(得分:0)
where()
,您必须使用filter()
:
$table->filter(function($value) {
return $value->id == 1;
});