Download the PHP package reinbier/laravel-unique-with without Composer
On this page you can find all versions of the php package reinbier/laravel-unique-with. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download reinbier/laravel-unique-with
More information about reinbier/laravel-unique-with
Files in reinbier/laravel-unique-with
Package laravel-unique-with
Short Description Unique With Validator rule for Laravel
License MIT
Homepage https://github.com/reinbier/laravel-unique-with
Informations about the package laravel-unique-with
Unique With Validator rule for Laravel
This package contains a variant of the validateUnique rule for Laravel, that allows for validation of multi-column UNIQUE indexes.
Please note
This package is to continue development of the package uniquewith-validator by Felix Kiss and have it work with recent versions of the Laravel framework (continuing from Laravel 9 onwards). For older versions of the framework, please use the aforementioned package.
Installation
You can install the package via composer:
Usage
Use it like any Validator
rule:
See the Validation documentation of Laravel.
Specify different column names in the database
If your input field names are different from the corresponding database columns, you can specify the column names explicitly.
e.g. your input contains a field 'last_name', but the column in your database is called 'sur_name':
Ignore existing row (useful when updating)
You can also specify a row id to ignore (useful to solve unique constraint when updating)
This will ignore row with id 2
To specify a custom column name for the id, pass it like
If your id is not numeric, you can tell the validator
Add additional clauses (e.g. when using soft deletes)
You can also set additional clauses. For example, if your model uses soft deleting then you can use the following code to select all existing rows but marked as deleted
Soft delete caveat:
If the validation is performed in a form request class, field deleted_at is skipped, because it's not send in request. To solve this problem, add 'deleted_at' => null to your validation parameters in request class., e.g.:
Specify specific database connection to use
If we have a connection named some-database
, we can enforce this connection (rather than the default) like this:
Example
Pretend you have a users
table in your database plus User
model like this:
Now you can validate a given first_name
, last_name
combination with something like this:
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- reinbier
- All Contributors
The code from this package is based on the original code that came from uniquewith-validator by Felix Kiss.
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-unique-with with dependencies
spatie/laravel-package-tools Version ^1.14.0
illuminate/contracts Version ^9.0|^10.0|^11.0
illuminate/support Version ^9.0|^10.0|^11.0
illuminate/validation Version ^9.0|^10.0|^11.0