Advertisement
villers

Untitled

Sep 10th, 2014
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. class UsersTableSeeder extends DatabaseSeeder {
  4.  
  5.     public function run()
  6.     {
  7.         $now = date('Y-m-d H:i:s');
  8.         $users = array(
  9.             array(
  10.                 'username' => 'admin',
  11.                 'password' => Hash::make('admin'),
  12.                 'created_at' => $now,
  13.                 'updated_at' => $now
  14.             ),
  15.         );
  16.         DB::table('users')->insert($users);
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement