Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

What is it about ?

I am using Laravel 5.2 and update the composer by running the following command

composer require felixkiss/uniquewith-validator:2.*

and then added the following to your providers array in config/app.php:

'providers' => array(
    // ...

    'FelixkissUniqueWithValidatorUniqueWithValidatorServiceProvider',
),

I did this because I am trying to implement Multiple column Unique Validation. I mean Composite Key Validation.

I am following the instructions as mentioned here

What's the issue ?

When Laravel runs the below line.

public function store(Request $request)
{
    $v = Validator::make($request->all(), [
        'SubCategory' => 'required|max:25|min:5|unique_with:tblsubcategory,CategoryID',
        'CategoryID' => 'required',
    ]);

    if ($v->fails()) {
        return Redirect::back()
                    ->withErrors($v)
                    ->withInput();
    }
    return Redirect('/SubCategories-List/'.$request->input('CategoryID'));
}

I get this error.

FatalErrorException in UniqueWithValidatorServiceProvider.php line 27: Call to undefined method IlluminateSupportFacadesValidator::resolver()

Important

This was working fine in Laravel 5.1

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
273 views
Welcome To Ask or Share your Answers For Others

1 Answer

Having the exact same problem, although when I run php artisan commands I get the following error Class validator does not exist

Trying to work out whats going on now

-- Fixed (for my problem) --

Updated your composer json to this version ...

"felixkiss/uniquewith-validator": "2.0.3"

and remove Whoops, as that seems to catch the HttpResponseException of which the upgrade docs do say could cause issues.

This fixed my issue.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...