<?php

namespace Database\Seeders;

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

class FamilleSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        \DB::table('familles')->insert(array (
            0 => 
            array (
                'id' => 1,
                'ordiges_id' => NULL,
                'nom' => 'DISPOSITIFS MEDICAUX',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            1 => 
            array (
                'id' => 2,
                'ordiges_id' => NULL,
                'nom' => 'EQUIPEMENTS BIOMEDICAUX',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            2 => 
            array (
                'id' => 3,
                'ordiges_id' => NULL,
                'nom' => 'EQUIPEMENTS et FOURNITURES GENERALES',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            3 => 
            array (
                'id' => 4,
                'ordiges_id' => NULL,
                'nom' => 'EQUIPEMENTS GENERAUX',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            4 => 
            array (
                'id' => 5,
                'ordiges_id' => NULL,
                'nom' => 'HOTELLERIE',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            5 => 
            array (
                'id' => 6,
                'ordiges_id' => NULL,
                'nom' => 'Informatique',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            6 => 
            array (
                'id' => 7,
                'ordiges_id' => NULL,
                'nom' => 'Laboratoires',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            7 => 
            array (
                'id' => 8,
                'ordiges_id' => NULL,
                'nom' => 'MEDICAMENTS',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            8 => 
            array (
                'id' => 9,
                'ordiges_id' => NULL,
                'nom' => 'PRESTATIONS COMMERCIALES',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            9 => 
            array (
                'id' => 10,
                'ordiges_id' => NULL,
                'nom' => 'PRESTATIONS GENERALES',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            10 => 
            array (
                'id' => 11,
                'ordiges_id' => NULL,
                'nom' => 'TRANSPORTS & VEHICULES',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
            11 => 
            array (
                'id' => 12,
                'ordiges_id' => NULL,
                'nom' => 'Travaux, fournitures et prestations techniques et énergies',
                'description' => 'Famille',
                'structure_id' => 2,
                'created_at' => NULL,
                'updated_at' => NULL,
            ),
        ));
    }
}
