<?php
use App\Models\Eloquent\DriversModel;
use Illuminate\Database\Seeder;
class DriversSeeder extends Seeder
{
public function run()
{
if (Schema::hasTable("drivers")) {
$count = (int)$this->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.");
}
}
}