Я создаю тест с помощью PHP Unit на Lumen. Я пытаюсь передать переменную $ name в связанную фабрику Template -> Attribute.
Я пробовал этот код, но не работает.
$name = 'Mulyawan Sentosa';
factory(TemplateModel::class)->create(
[
'id' => 12
]
)->each(
function ($template) {
$template->attributes()->save(
factory(TemplateattributeModel::class)->make(
[
'name' => $name
]
)
);
}
);
Как это сделать? Спасибо!