create(); $this->assertTrue($row->module()->exists()); } /** @test */ public function it_has_many_fields() { $row = ModuleRow::factory()->create(); ModuleRowField::factory()->create([ 'module_row_id' => $row->id, ]); $this->assertTrue($row->fields()->exists()); } }