我正在尝试在我的网站上建立搜索(使用laravel 5.2)。我需要一次搜索多个表。基本上我需要通过过滤类别,工作,部门和城市来显示个人资料的信息!
profiles : id, name, ......, job_id, location_id......
location : id, name, city_id
job : id, name, categorie_id
categorie : id, name
city : id, name
in below code :
$profils = \App\Profils::whereHas('jobs', function($query){
$nom_catego = \Input::has('lcategorie') ? \Input::get('lcategorie') : null;
$nom_job = \Input::has('ljob') ? \Input::get('ljob') : null;
$nom_location = \Input::has('ldept') ? \Input::get('llocation') : null;
if(!isset($nom_catego) && !isset($nom_job)){
$query->where('categorie_id', '=' , $nom_catego)
->where('id', '=', $nom_job);
}
if(!isset($nom_catego) && isset($nom_job)){
$query->where('categorie_id', '=' , $nom_catego);
}
if(!isset($nom_job) && !isset($nom_location) && isset($nom_catego)){
$query->where('city_id', '=' , $nom_location)
->where('id', '=' , $nom_catego);
}
if(isset($nom_job) && !isset($nom_location) && isset($nom_catego)){
$query->where('city_id', '=' , $nom_location);
}
})->paginate(10);
注意:使用此代码,我可以按类别和工作获取配置文件,但我无法按城市和位置检索配置文件! 谢谢你的帮助;
答案 0 :(得分:0)
您可以使用查询构建器或使用eloquent来执行此操作,请注意,查询构建器中可用的任何函数都可用于eloquent查询, 为简单起见,我在查询构建器方法中给出了答案,
$results = DB::table('profiles')
->select(['profiles.*']);
if($request->has('lcategorie')){
$results->join('job','profiles.job_id','=','job.id');
$results->join('categorie','job.categorie_id','=','categorie.id');
$results->where('categorie.id','=',$request->input('lcategorie'));
}
if($request->has('ljob')){
if(!$request->has('lcategorie')){ //avoid repeat the join to same table multiple time
$results->join('job','profiles.job_id','=','job.id');
}
$results->where('job.id','=',$request->input('ljob'));
}
if($request->has('ldept')){
$results->join('location','profiles.location_id','=','location.id');
$results->join('city','location.city_id','=','city.id');
$results->where('location.id','=',$request->input('llocation'));
}
$results = $results->get();
答案 1 :(得分:0)
谢谢Akram,它有效,还添加了按城市过滤:
if($request->has('ldept')){
$profiles->join('location','profiles.location_id','=','location.id');
$profiles->join('citys','location.city_id','=','citys.id');
$profiles->where('citys.id','=',$request->input('ldept'));
}
if($request->has('llocation')){
if(!$request->has('ldept')){
$profiles->join('location','profiles.location_id','=','location.id');
}
$profiles->where('location.id','=',$request->input('llocation'));
}