We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2110fc commit 641f5b1Copy full SHA for 641f5b1
src/Davzie/LaravelBootstrap/Seeds/UserTable.php
@@ -16,11 +16,12 @@ public function run()
16
'first_name' => Config::get('laravel-bootstrap::setup.first-name'),
17
'last_name' => Config::get('laravel-bootstrap::setup.last-name'),
18
'password' => Hash::make( Config::get('laravel-bootstrap::setup.password') ),
19
+ 'last_login' => date('Y-m-d H:i:s'),
20
]
21
];
22
DB::table('users')->insert($types);
23
$this->command->info('User Table Seeded');
24
25
}
26
-}
27
+}
0 commit comments