1, 'name' => 'test 1', 'description' => 'description 1', 'created_at' => '2023-05-18 11:02:55', 'updated_at' => '2023-05-18 11:02:55', ]); $newData0->test_model_childs()->createMany([ [ 'id' => 1, 'test_model_id' => 1, 'name' => 'child 1', 'created_at' => '2023-05-18 11:02:55', 'updated_at' => '2023-05-18 11:02:55', ] ]); $newData1 = \App\Models\TestModel::create([ 'id' => 2, 'name' => 'test 2', 'description' => 'description 2', 'created_at' => '2023-05-18 11:02:55', 'updated_at' => '2023-05-18 11:02:55', ]); $newData1->test_model_childs()->createMany([ [ 'id' => 3, 'test_model_id' => 2, 'name' => 'child 2', 'created_at' => '2023-05-18 11:02:55', 'updated_at' => '2023-05-18 11:02:55', ] ]); $newData2 = \App\Models\TestModel::create([ 'id' => 3, 'name' => 'test 3', 'description' => 'description 3', 'created_at' => '2023-05-18 11:02:55', 'updated_at' => '2023-05-18 11:02:55', ]); $newData2->test_model_childs()->createMany([ [ 'id' => 4, 'test_model_id' => 3, 'name' => 'child 3', 'created_at' => '2023-05-18 11:02:55', 'updated_at' => '2023-05-18 11:02:55', ] ]); } }