Expand code for reports.

This commit is contained in:
James Cole
2014-12-01 05:57:03 +01:00
parent 0a2cbaa047
commit d7b0106e7d
6 changed files with 219 additions and 77 deletions

View File

@@ -8,10 +8,15 @@ class DefaultUserSeeder extends Seeder
public function run()
{
DB::table('users')->delete();
if (App::environment() == 'homestead') {
User::create(
['email' => 'thegrumpydictator@gmail.com', 'password' => 'sander', 'reset' => null, 'remember_token' => null, 'migrated' => 0]
);
User::create(
['email' => 'thegrumpydictator@gmail.com', 'password' => 'james', 'reset' => null, 'remember_token' => null, 'migrated' => 0]
);
User::create(
['email' => 'acceptance@example.com', 'password' => 'acceptance', 'reset' => null, 'remember_token' => null, 'migrated' => 0]
);
}
}