You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$rawContent = Contract::find(1);
if (empty($rawContent)) {
$contract = new Contract();
$contract->mycontent = "TestCon";
$contract->save();
$rawContent = Contract::find(1);
}
$model = new Contract();
$model->setContent($rawContent,true);
i have a problem while i am saving raw content throw below error
"
SQLSTATE[23502]: Not null violation: 7 ERROR: null value in column "contentable_id" violates not-null constraint DETAIL: Failing row contains (9, null, null, App\Contract, null, page, 2019-04-30 09:45:19, 2019-04-30 09:45:19). (SQL: insert into "lb_contents" ("contentable_id", "contentable_type", "updated_at", "created_at") values (, App\Contract, 2019-04-30 09:45:19, 2019-04-30 09:45:19) returning "id")
"
help me
The text was updated successfully, but these errors were encountered:
$contract = newContract();
$contract->setContent("TestContent", true);
$contract->field1='Value1'; //Additional field defined in the Contracts model$contract->save();
Hello
Im using postgreSql
MYcode ---
i have a problem while i am saving raw content throw below error
"
SQLSTATE[23502]: Not null violation: 7 ERROR: null value in column "contentable_id" violates not-null constraint DETAIL: Failing row contains (9, null, null, App\Contract, null, page, 2019-04-30 09:45:19, 2019-04-30 09:45:19). (SQL: insert into "lb_contents" ("contentable_id", "contentable_type", "updated_at", "created_at") values (, App\Contract, 2019-04-30 09:45:19, 2019-04-30 09:45:19) returning "id")
"
help me
The text was updated successfully, but these errors were encountered: