📜  在 laravel 中运行播种器命令 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:35.027000             🧑  作者: Mango

代码示例3
command->ask('Necha dona Ustun qo`shishim kerak?', 10);
            for ($i=1; $i < $count; $i++) {
                DriversModel::query()->updateOrCreate(['id' => $i], [
                    'car_number' => ''.$i.'A365EA',
                    'trailer_number' => 'a5s6d4321c2a6',
                    'technical_passport' => 'asd56a5sa6f5',
                    'full_name' => 'Akbarali'.$i.'',
                    'passport' => '{"0": "test'.$i.'.png", "1": "test1'.$i.'.png"}',
                    'license_limitation' => '6567965',
                    'license' => '{"0": "test'.$i.'.png", "1": "test1'.$i.'.png"}',
                    'rate' => '54546'.$i,
                    'user_id' => '3',
                ]);
                $this->command->info("{$i} ustun qo'shildi.");
            }
            $this->command->info("Jami {$i} ustun qo'shildi.");
        }
    }
}