mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Removed dd for debugging
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
37033fb2f7
commit
064e0b7a1c
|
@ -47,15 +47,16 @@ class CategoryTest extends BaseTest
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Loop through the models and create 2 assets in each model
|
// Loop through the models and create 2 assets in each model
|
||||||
$models->each(function ($model) {
|
$models->each(function ($model) {
|
||||||
|
//dd($model);
|
||||||
$asset = Asset::factory()
|
$asset = Asset::factory()
|
||||||
->count(2)
|
->count(2)
|
||||||
->create(
|
->create(
|
||||||
[
|
[
|
||||||
'model_id' => $model->id,
|
'model_id' => $model->id,
|
||||||
|
|
||||||
|
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
//dd($asset);
|
//dd($asset);
|
||||||
|
|
Loading…
Reference in a new issue