Support the ongoing development of Laravel.io →
Database Validation
Last updated 1 year ago.
0

So I have found the error. I was trying to create project out of $valid_data from request. Which is not needed.

public function store(project $project){
    // validation stuff
    $project->create(request($valid_data)); // <=== here is the error
}

so i just changed it to

$project->create($valid_data);

and everything works fine. I have found this solution here.

Last updated 5 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

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.