mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-04 18:16:05 -04:00
70 lines
2.6 KiB
PHP
70 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace Modules\JobPortal\Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class UserTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$candidates = [
|
|
['Opendoor','Robertson'],
|
|
['Checkr','Warren'],
|
|
['Esther','Victoria'],
|
|
['Bell','Alexander'],
|
|
['Floyd','Robert'],
|
|
['Jerome','Leslie'],
|
|
];
|
|
foreach ($candidates as $k=>$v){
|
|
DB::table('users')->insert([
|
|
'role_id' => 102,
|
|
//'name'=> $v[0] .' '. $v[1],
|
|
'first_name' => $v[0],
|
|
'last_name' => $v[1],
|
|
'email' => strtolower($v[1]).'@superio.test',
|
|
'password' => bcrypt('123456Aa'),
|
|
//'phone' => '112 666 888',
|
|
'status' => 'publish',
|
|
'address' => 'My Dinh, Ha Noi',
|
|
'country' => 'Viet Nam',
|
|
|
|
'created_at' => date("Y-m-d H:i:s"),
|
|
'bio'=> 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.'
|
|
]);
|
|
}
|
|
|
|
$employer = [
|
|
['Cameron','Williamson'],
|
|
['Miles','Fox'],
|
|
['Tom','Hiddleston'],
|
|
['Jennifer','Linda'],
|
|
['David','John'],
|
|
['James','Rebecca']
|
|
];
|
|
foreach ($employer as $k=>$v){
|
|
DB::table('users')->insert([
|
|
'role_id' => 101,
|
|
//'name'=> $v[0] .' '. $v[1],
|
|
'first_name' => $v[0],
|
|
'last_name' => $v[1],
|
|
'email' => strtolower($v[1]).'@superio.test',
|
|
'password' => bcrypt('123456Aa'),
|
|
//'phone' => '112 666 888',
|
|
'status' => 'publish',
|
|
//'address' => 'My Dinh, Ha Noi',
|
|
'country' => 'Viet Nam',
|
|
'created_at' => date("Y-m-d H:i:s"),
|
|
'bio'=> 'We\'re designers who have fallen in love with creating spaces for others to reflect, reset, and create. We split our time between two deserts (the Mojave, and the Sonoran). We love the way the heat sinks into our bones, the vibrant sunsets, and the wildlife we get to call our neighbors.'
|
|
]);
|
|
}
|
|
}
|
|
}
|