<?php

namespace Database\Seeders;

use Carbon\Carbon;
use Illuminate\Database\Seeder;

class DocumentsTableSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        \DB::table('documents')->insert([
            [
                "name" => "Document test",
                "arch_id" => "HR150",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "1",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document tests",
                "arch_id" => "HR1505",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "2",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR15033",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "1",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document testasd",
                "arch_id" => "HR150124",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "3",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR1501421",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "1",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR150213",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "1",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR150ad",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "2",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR150234",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "3",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR15012321",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "1",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR15021312",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "1",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
            [
                "name" => "Document test",
                "arch_id" => "HR15312430",
                "description" => "hahahah ah aha hshdash dhawud hwa",
                "user_id" => "1",
                "department_id" => "1",
                "is_active" => "1",
                "created_at" => Carbon::now()->format('Y-m-d H:i:s'),
            ],
        ]);
    }
}
