在Eloquent All上查询的地方()

时间:2018-04-11 06:36:05

标签: laravel-4 eloquent

$table = ExampleTable::all();
$elem = $table->find(1);

虽然上述工作,但后退不会:

$table = ExampleTable::all();
$elem = $table->where('id', 1)->first();

除了DB::table之外,有没有办法实现后者?

1 个答案:

答案 0 :(得分:0)

Laravel 4.2中无法使用

where(),您必须使用filter()

$table->filter(function($value) {
    return $value->id == 1;
});