Laravel 5.5 unique validation rule on seperate table with different column name(Laravel 5.5 对具有不同列名的单独表的唯一验证规则)
问题描述
所以我有用户和公司.一个用户属于一个公司.
So I have users and companies. A user belongs to one company.
我想验证用户注册,以便他们用来注册的 business_name
字段在 companys
表中是唯一的,目标是不允许用户创建重复公司.
I want to validate a user registration so that the business_name
field they use to register is unique in the companies
table, the goal is to not allow users from creating duplicate companies.
这是我的注册函数:
public function register(Request $request)
{
$validator = Validator::make($request->all(), [
'first_name' => 'required',
'last_name' => 'required',
'business_name' => 'required|unique:companies',
'email' => 'required|email|max:255|unique:users',
'password' => 'required|min:6',
]);
if ($validator->fails()) {
return response()->json(['error'=>$validator->messages()], 401);
}
}
我要比较的字段是用于检查唯一性的 companies.name
.
The field I want to compare against is the companies.name
to check for uniqueness.
这可能吗?目前它正在尝试在 companys
表中查找 business_name
.
Is this possible? At the moment it is trying to look for business_name
in the companies
table.
推荐答案
没关系,设法弄明白了.只需要一个额外的参数来指定列名:
Never mind, managed to figure it out. Just needed an extra parameter to specify the column name:
'business_name' => 'required|unique:companies,name',
这篇关于Laravel 5.5 对具有不同列名的单独表的唯一验证规则的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 5.5 对具有不同列名的单独表的唯一验证规则
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01