Add missing test factories

This commit is contained in:
Deon George
2020-02-12 21:57:44 +11:00
parent 5cc0dcd8e1
commit c5f171da95
4 changed files with 44 additions and 2 deletions

View File

@@ -4,16 +4,18 @@ use Faker\Generator as Faker;
$factory->define(App\Models\Service::class, function (Faker $faker) {
return [
'account_id'=>1,
'active'=>1,
];
});
$factory->afterMaking(App\Models\Service::class, function ($service,$faker) {
$product = factory(App\Models\Product::class)->make();
$service->setRelation('product',$product);
$service->product_id = $product->id;
$account = factory(App\Models\Account::class)->make();
$service->setRelation('account',$account);
$service->account_id = $account->id;
});
// Weekly