<?php

namespace Database\Seeders;

use App\Models\Customer;
use Illuminate\Database\Seeder;

class CustomerSeeder extends Seeder
{
    public function run(): void
    {
        Customer::factory(5)->create();
        Customer::factory(['company_name' => 'Genumark'])->create();

        //            ->has(ShippingEntry::factory([
        //            ]))
        //            ->has(ShippingEntry::factory([
        //                'account_title'    => 'Genumark Save-On-Foods',
        //                'courier'          => 'UPS CampusShip',
        //                'contact'          => 'https://www.ups.com/lasso/login',
        //                'account_username' => 'GenumarkTopNotch',
        //                'account_password' => 'TopNotch@13579',
        //                'info_needed'      => 'Put PO on box',
        //                'notify'           => 'Jane Wellman',
        //                'notes'            => 'Don\'t CC Kathlyn for SOF orders',
        //            ]))
    }
}