Incremental number on factory, Laravel

2.1k Views Asked by At

I have a factory that is called several times, but on contract_year column I get the same value.

$factory->define(ContractYear::class, function (Faker $faker) {
    $contract = Contract::orderByDesc('id')->first();
    $contract_year = ContractYear::select('contract_year')->orderByDesc('id')->value('contract_year');
    if($contract_year == null){
        $contract_year = 2019;
    }

    return [
        'contract_id'                   => $contract->id,
        'contract_year'                 => $contract_year++,
        'licensed_users'                => $faker->randomDigit,
    ];

});

I call it from here..

 $u->contracts()->saveMany(factory(Contract::class, rand(1, 5))->create()->each(function ($contract){
     $contract->years()->saveMany(factory(ContractYear::class, $contract->number_of_years)->create());            
}));
2

There are 2 best solutions below

8
On

You can use static


$factory->define(ContractYear::class, function (Faker $faker) {
    static $contract_year;
    
    $contract = Contract::orderByDesc('id')->first();
    if(!$contract_year) {
        $contract_year =  ContractYear::select('contract_year')->orderByDesc('id')->value('contract_year') ?? 2019;
    }

    return [
        'contract_id'                   => $contract->id,
        'contract_year'                 => $contract_year++,
        'licensed_users'                => $faker->randomDigit,
    ];

});

Reference: `static` keyword inside function?

4
On

Attach a counter to $this

$factory->define(ContractYear::class, function (Faker $faker) {
    $this->sequences = $this->sequences ?? [];

    $contract = Contract::orderByDesc('id')->first();

    $group = $contract->id ?? 0;

    $this->sequences[$group] = $this->sequences[$group] ?? 2019;

    return [
        'contract_id'                   => $contract->id,
        'contract_year'                 => $this->sequences[$group]++,
        'licensed_users'                => $faker->randomDigit,
    ];

});

Might be worth looking into Laravel 8 new Model factories for more explicit object oriented approach