UserTableSeeder.php
1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
use Database\TruncateTable;
use Carbon\Carbon as Carbon;
use Illuminate\Database\Seeder;
use Database\DisableForeignKeys;
use Illuminate\Support\Facades\DB;
/**
* Class UserTableSeeder.
*/
class UserTableSeeder extends Seeder
{
use DisableForeignKeys, TruncateTable;
/**
* Run the database seed.
*
* @return void
*/
public function run()
{
$this->disableForeignKeys();
$this->truncateMultiple([config('access.users_table')]);
//Add the master administrator, user id of 1
$users = [
[
'username' => 'admin',
'first_name' => 'Admin',
'last_name' => 'Istrator',
'password' => bcrypt('1234'),
'business_id' =>0,
'science_id' =>0,
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
],
[
'username' => 'backend',
'first_name' => 'Backend',
'last_name' => 'User',
'business_id' =>0,
'science_id' =>0,
'password' => bcrypt('1234'),
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
],
[
'username' => 'default',
'first_name' => 'Default',
'last_name' => 'User',
'business_id' =>0,
'science_id' =>0,
'password' => bcrypt('1234'),
'created_at' => Carbon::now(),
'updated_at' => Carbon::now(),
],
];
DB::table(config('access.users_table'))->insert($users);
$this->enableForeignKeys();
}
}