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 4b1ae2c commit 44f9d82Copy full SHA for 44f9d82
src/Davzie/LaravelBootstrap/Seeds/UserTable.php
@@ -16,6 +16,7 @@ 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
+ 'created_at' => date('Y-m-d H:i:s'),
20
]
21
];
22
DB::table('users')->insert($types);
0 commit comments