laravel 2020-12-28 21:36:51] production.ERROR: QueryException: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'backup_limit' cannot be null code example
Example: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'image' cannot be null (SQL: update `logins` set `name` = testdata, `image` = ?, `logins`.`updated_at` = 2020-12-22 11:29:55 where `id` = 48)
$user=User::create([
'name'=>$request->name,
'email'=>$request->email,
'password'=>bcrypt('password')
]);
$profile=Profile::create([