79189684

Date: 2024-11-14 16:43:16
Score: 1
Natty:
Report link

Create your table with NOT NULL primary key constraint

create table if not exists inx_test_table
(
    id int unsigned NOT NULL auto_increment primary key,
    ...
)

And add $fillable in your model

protected $fillable = [
    'name'
];
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Payal Desai