我有一个搜索功能在我的应用程序,将搜索一个“广泛的”搜索词的几个列或一个定义的列作为用户选择。我还有一个outserwhere
语句,用于搜索公司id(多租户应用程序)和分配的subcompany_id,它们都属于用户。
当我搜索时,我得到了所有的结果,它没有使用与用户相关的company_id或subcompany_id。我发现它在或where
语句括号内使用subcompany_id,而不是在括号外。
$Leads = Lead::with('Bank')
->with('BankBranch')
->with('Account')
->with('LeadStatus')
->with('SalesRep')
->when($HideAccounts == True, function ($HideAccounts) {
$HideAccounts->where('lead_merchant_id', '');
})
->when(isset($request), function ($CustomSearch) use ($request) {
$CustomSearch->when(!empty($request->broad), function ($BroadSearch) use ($request) {
$BroadSearch->where('lead_name', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_contact', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_phone1', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_phone2', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_merchant_id', $request->broad)
->orWhere('secondary_mid', $request->broad)
->orWhere('lead_address_city', $request->broad)
->orWhere('lead_address_state', $request->broad)
->orWhere('lead_address_zip', 'LIKE', '%' . $request->broad . '%');
});
if(!empty($request->company_name)) {
$CustomSearch->where('lead_name', 'LIKE', '%' . $request->company_name . '%');
}
if(!empty($request->lead_contact)) {
$CustomSearch->where('lead_contact', 'LIKE', '%' . $request->lead_contact . '%');
}
if(!empty($request->address_city)) {
$CustomSearch->where('lead_address_city', $request->address_city);
}
if(!empty($request->address_state)) {
$CustomSearch->where('lead_address_state', $request->address_state);
}
if (!empty($request->sic_code)) {
$CustomSearch->where('lead_sic_code', 'LIKE', '%' . $request->sic_code . '%');
}
if (!empty($request->lead_leadstatus_id)) {
$CustomSearch->where('lead_leadstatus_id', $request->lead_leadstatus_id);
}
if(!empty($request->address_zip)) {
$CustomSearch->where('lead_address_zip', 'LIKE', '%' . $request->address_zip . '%');
}
if(!empty($request->phone)) {
$CustomSearch->where('lead_phone1', $request->phone);
$CustomSearch->orWhere('lead_phone2', $request->phone);
}
if (!empty($request->lead_referral_user_id)) {
$CustomSearch->where('lead_referral_user_id', $request->lead_referral_user_id);
}
if (!empty($request->lead_sales_representative_id)) {
$CustomSearch->where('lead_sales_representative_id', $request->lead_sales_representative_id);
}
if (!empty($request->lead_referral_bank_id)) {
$CustomSearch->where('lead_referral_bank_id', $request->lead_referral_bank_id);
}
if (!empty($request->lead_referral_bankbranch_id)) {
$CustomSearch->where('lead_referral_bankbranch_id', $request->lead_referral_bankbranch_id);
}
if (!empty($request->lead_created)) {
$LeadCreated = Carbon::createFromFormat('M d, Y', $request->lead_created)->startOfDay();
if (!empty($LeadCreated)) {
$CustomSearch->where('lead_created_timestamp', '>=', $LeadCreated);
}
}
if (!empty($request->lead_created_end)) {
try {
$LeadCreatedEnd = Carbon::createFromFormat('M d, Y', $request->lead_created_end)->startOfDay();
} catch (\Exception $e) {
$LeadCreatedEnd = NULL;
}
if (!empty($LeadCreatedEnd)) {
$CustomSearch->where('lead_created_timestamp', '<=', $LeadCreatedEnd);
}
}
if (!empty($request->account_approval_start)) {
try {
$AccountApprovalStart = Carbon::createFromFormat('M d, Y', $request->account_approval_start)->startOfDay();
} catch (\Exception $e) {
$AccountApprovalStart = NULL;
}
if (!empty($AccountApprovalStart)) {
$CustomSearch->whereHas('Account', function ($Account) use ($AccountApprovalStart) {
$Account->where('account_created_timestamp', '>=', $AccountApprovalStart);
});
}
}
if (!empty($request->account_approval_end)) {
try {
$AccountApprovalEnd = Carbon::createFromFormat('M d, Y', $request->account_approval_end)->startOfDay();
} catch (\Exception $e) {
$AccountApprovalEnd = NULL;
}
if (!empty($AccountApprovalEnd)) {
$CustomSearch->whereHas('Account', function ($Account) use ($AccountApprovalEnd) {
$Account->where('account_created_timestamp', '<=', $AccountApprovalEnd);
});
}
}
})
->where('lead_company_id', Auth::user()->user_company_id)
->when(Auth::user()->user_subcompany_id != NULL, function ($query) {
return $query->where('lead_subcompany_id', Auth::user()->user_subcompany_id);
});
此代码返回以下查询:
从`leads`中选择count(*)作为聚合,其中(`lead_name`LIKE'%tire%'或`lead_contact`LIKE'%tire%'或`lead_contact`LIKE'%tire%'或`lead_phone1`LIKE'%tire%'或`lead_phone2`LIKE'%tire%'或`lead_merchant_id`='tire'或`lead_merchant_id`='tire'或`secondary_mid`='tire'或`lead_address_state`='tire'或.`lead_deleted_timestamp`为null
它应该做的是:
我如何使用Laravel Eloquent实现这一点?
如果您想在“$BroadSearch”部分周围加上括号,那么您需要将查询放在它自己的作用域中:
$BroadSearch->where(function($query) {
$query->where('lead_name', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_contact', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_phone1', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_phone2', 'LIKE', '%' . $request->broad . '%')
->orWhere('lead_merchant_id', $request->broad)
->orWhere('secondary_mid', $request->broad)
->orWhere('lead_address_city', $request->broad)
->orWhere('lead_address_state', $request->broad)
->orWhere('lead_address_zip', 'LIKE', '%' . $request->broad . '%');
});
问题内容: 我正在尝试使用Eloquent在数据库种子期间执行以下查询: 这是我在Eloquent中的实现: 尽管第一个查询始终返回完整结果,但Eloquent等价项始终为表的和字段以外的所有内容返回空元素。由于和模型都是工匠生成的骨架,因此我无所适从。 例如: 这是当我对种子(最初由Faker生成)的第一个口才查询dd()时输出的数组: 问题答案: 可以通过指定特定表中所需的特定列名来解决,如下
问题内容: 我有以下代码: 除了和以外,一切都正常。 它不排除任何一个,并且显示的金额高于和低于我设置的数字。如果我删除它工作正常。 我使用的和正确的? 问题答案: 问题是您没有将OR和AND组合在一起,而是对其进行了正确分组。考虑以下条件: 因此,要使其正常工作,您需要对条件进行正确分组。您可以通过将闭包传递给或方法来对条件进行分组。我猜您想将条件分组在一起,因此您的代码如下所示:
我有一个问题,我很难用laravel雄辩的ORM编写这个问题。 如果有人能帮忙,我将不胜感激。 下面是SQL表达式:
我尝试从带有多个where和/或子句的表中获得结果。
我的客户通过订单订购了许多包裹。 我想退回包裹数量超过0且状态仅为成功的客户。但我不知道如何添加包裹状态的条件。目前,这份声明给了我一份有包裹的客户名单<代码>$customers=Customer::has('包裹','
在我的应用程序中,我更新了从一对多到多对多的关系,我试图找出一种持久化关联功能的方法。 假设我有两个相关的表,例如狗和主人。如果我有一系列的主人,并且我正试图为这些主人获取一份狗的id列表,我应该如何雄辩地做到这一点? 这里也提出了类似的问题:https://laracasts.com/discuss/channels/laravel/getting-many-to-many-related-da