我需要将数据库查询生成器转换为Eloquent模型。我正在使用插件https://github.com/Kyslik/column-sortable,它需要一个Eloquent模型。
<?php
$payments = DB::table('users')
->select('orders.id', 'users.id', 'users.name', 'orders.amount', 'orders.created_at', 'orders.updated_at')
->join('patients', 'users.id', '=', 'patients.user_id')
->join('orders', 'patients.id', '=', 'orders.patient_id')
->where('users.name', 'LIKE', '%' . $q . '%')
->orWhere('users.email', 'LIKE', '%' . $q . '%')
->get();
答案 0 :(得分:0)
在控制器方法中调用模型。
$companyObj = new modelname();
$userDetail = $companyObj->model_method_name($request);
答案 1 :(得分:0)
尝试在各自的模型中声明雄辩的关系,如下所示:
class Users extends Model {
public function patients(){
return this->hasOne('App\Patients', 'user_id', 'id')->with('orders');
}
}
class Patients extends Model {
public function orders() {
return this->hasMany('App\Orders', 'patient_id', 'id')->select('id', 'amount', 'created_at', 'updated_at');
}
}
现在在用户存储库/控制器的雄辩查询中调用这些关系:
$payments = $this->getModel()->select('id', 'name')->with('patients')->where('name','LIKE','%'.$q.'%')->orWhere('email','LIKE','%'.$q.'%')->get();