Laravel failing to update column with decimal type
I have the following code in a controller file $customer->update([ 'name' => $request->input('name'), 'address' => $request->input('address'), 'phone' => $request->input('phone'), 'percentage' => $request->input('percentage') ]); which successfully updates everything except the percentage field which is of type DECIMAL(2,2) I get no error…