• File: UserClientsTableSeeder.php
  • Full Path: /var/www/imaliapitest/database/seeds/UserClientsTableSeeder.php
  • Date Modified: 05/19/2025 4:29 PM
  • File size: 690 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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()
            ],
        ]);
    }
}