DB::table('user')->where('id',$id);
if($check_index->exists()){
return true;
}
return false;
}
##Controller##
if(User::checkIndex($id)){
//Something
} // Выдает ошибку Object of class Illuminate\Database\Eloquent\Builder could not be converted to string
Подскажите как быть???
а как ты вызывешь этот скоуп ?
в scope первый параметр это всегда QueryBuilder, остальные потом. В твоём случае должно быть function scopeCheckIndex($builder, $id)
Обсуждают сегодня