create(); $theme = Theme::factory()->create(); $mmt = MediaMonitoringTheme::factory()->create([ 'media_monitoring_id' => $monitoring->id, 'theme_id' => $theme->id, ]); expect($mmt->mediaMonitoring->id)->toBe($monitoring->id); expect($mmt->theme->id)->toBe($theme->id); expect($monitoring->themes->first()->id)->toBe($theme->id); });