<?php
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
class UserClientsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('user_clients')->insert([
'0' => [
'name' => 'Miguel',
'institution' => 'Kaya',
'nuit' => '124578941',
'email' => 'admin@teste.com',
'password' => Hash::make('12345678'),
'phone' => '845030902',
'created_at' => now(),
'updated_at' => now()
],
]);
}
}