Support the ongoing development of Laravel.io →
posted 10 years ago
Validation
Last updated 2 years ago.
0

Pass the id to the validator and than you can use it that way:

    
public function rules()
            {
                return array(
            	    'username' => 'required|alpha_dash|max:255|unique:users,username,'.$this->id.',user_id',					
               );
            }

If you are wondering about the function syntax, take a look at validation as a service: http://culttt.com/2013/07/29/creating-laravel-4-validation-services/

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

goowikns goowikns Joined 18 Jun 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.