Search
 
SCRIPT & CODE EXAMPLE
 

PHP

laravel unique multiple columns

$table->unique(['mytext', 'user_id']);
Comment

laravel validation unique two columns

[
     'column_1' => 'required|unique:TableName,column_1,' . $this->id . ',id,colum_2,' . $this->column_2
]
Comment

unique check with multiple columns laravel validation

'name' => 'unique:table,field,NULL,id,field1,value1,field2,value2,field3,value3'
Comment

laravel unique validation on multiple columns

'mobile_no' 
  => 'unique:users,mobile_no,NULL,id,country_id,'.request('country_id');
Comment

laravel 8 validation unique 2 columns

// in my case, just add more unique rule
'phone1' =>'string|unique:tbl_users,phone1|unique:tbl_users,phone2|different:phone2|min:2',
'phone2' =>'string|unique:tbl_users,phone2|unique:tbl_users,phone1|different:phone1|min:2',
Comment

laravel validation two columns unique

$messages = [
    'data.ip.unique' => 'Given ip and hostname are not unique',
];

Validator::make($data, [
    'data.ip' => [
        'required',
        Rule::unique('servers')->where(function ($query) use($ip,$hostname) {
            return $query->where('ip', $ip)
            ->where('hostname', $hostname);
        }),
    ],
],
$messages
);
Comment

Laravel unique Validation with multiple input field

'name'        => 'required|max:150|unique:course_lessons,name,NULL,id,course_id,' . request('course_id'),
 "<input_filed_name>" => "valiadtionRule"|"ValidationRule"|"unique:<tableName>,<validateableField>,<ignoreableID>,<tablePrimaryKey>,<column1>,<column1Value>,<column2>,<column2Value>"
Comment

Laravel unique cheque using multiple column

public function rules()
{            
    return [
       'column_1' => 'required|unique:TableName,column_1,' . $this->id . ',id,colum_2,' . $this->column_2 . ',colum_3,' . $this->column_3,
    ];
}
Comment

laravel unique validation on multiple columns

'exam_category_id' => Rule::unique('exams')->where(function ($query) use ($request) {
   return $query->where('exam_name', $request->exam_name)
      ->where('exam_year', $request->exam_year)
      ->where('student_id', $request->student_id);
})
Comment

PREVIOUS NEXT
Code Example
Php :: upgrade php 7.3 to 7.4 
Php :: php receive request 
Php :: laravel translation parameter send 
Php :: laravel sprintf span in controller 
Php :: How to execute “php artisan migrate” and other Laravel commands in remote server? 
Php :: laravel collection pop 
Php :: does xampp install php 
Php :: drupal 8 $_GET 
Php :: php get the two number of time second 
Php :: set config key dynamic laravel 
Php :: drupal form show description 
Php :: xdebug phpstorm 
Php :: php add number to the existing name 
Php :: laravel search function 
Php :: set border phpoffice phpexcel 
Php :: Redirect to HTTPS & remove www 
Php :: The Process class relies on proc_open, which is not available on your PHP installation cpanel 
Php :: laravel eloquent update quantity 
Php :: php unset by value 
Php :: laravel collection splice 
Php :: create model for existing table in laravel 
Php :: Magento 2 create admin module 
Php :: php round function syntax 
Php :: php 8 Match Expression / Switch Case 
Php :: send email verification nootification laravel 
Php :: What is the purpose of an abstract? 
Php :: displaying php errors 
Php :: Best testing tools for php 
Php :: foreign key string laravel 
Php :: php locale 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =