Add [0] to fillable property to allow mass assignment on [AppModelsposts] – Laravel
While inserting data into Mysql I have encountered the following error: "Add [0] to fillable property to allow mass assignment on [AppModelsposts]" Here is my code: public function update(Request $request, $id){ posts::where('id', $id)->first()->update([ $this->validate($request, [ 'title' => 'required|max:25', 'description' =>…