<?php

namespace Database\Seeders;

use Illuminate\Database\Seeder;

class PortefeuilleAcheteurSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        \DB::table('portefeuilles_acheteurs')->insert(array (
            0 => 
            array (
                'id' => 1,
                'nom' => 'Matériels et fournitures médicales, équipements mobiliers et maintenance, biomédical',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 1,
                'created_at' => '2021-06-08 23:54:57',
                'updated_at' => '2021-06-08 23:54:57',
            ),
            1 => 
            array (
                'id' => 2,
                'nom' => 'Fourniture et maintenance technique, travaux',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 1,
                'created_at' => '2021-06-08 23:55:08',
                'updated_at' => '2021-06-08 23:55:08',
            ),
            2 => 
            array (
                'id' => 3,
                'nom' => 'Logistique, prestations de service, restauration',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 2,
                'created_at' => '2021-06-08 23:55:20',
                'updated_at' => '2021-06-08 23:55:20',
            ),
            3 => 
            array (
                'id' => 4,
                'nom' => 'Restauration, Blanchisserie, matériel et fournitures hotellières',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 2,
                'created_at' => '2021-06-08 23:55:34',
                'updated_at' => '2021-06-08 23:55:34',
            ),
            4 => 
            array (
                'id' => 5,
                'nom' => 'Matériels et fournitures médicales, équipements mobiliers et maintenance, biomédical',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 3,
                'created_at' => '2021-06-08 23:54:57',
                'updated_at' => '2021-06-08 23:54:57',
            ),
            5 => 
            array (
                'id' => 6,
                'nom' => 'Fourniture et maintenance technique, travaux',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 3,
                'created_at' => '2021-06-08 23:55:08',
                'updated_at' => '2021-06-08 23:55:08',
            ),
            6 => 
            array (
                'id' => 7,
                'nom' => 'Logistique, prestations de service, restauration',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 4,
                'created_at' => '2021-06-08 23:55:20',
                'updated_at' => '2021-06-08 23:55:20',
            ),
            7 => 
            array (
                'id' => 8,
                'nom' => 'Restauration, Blanchisserie, matériel et fournitures hotellières',
                'description' => NULL,
                'portefeuille_responsable_achat_id' => 4,
                'created_at' => '2021-06-08 23:55:34',
                'updated_at' => '2021-06-08 23:55:34',
            ),
        ));
    }
}
