Skip to content

Commit 938ab80

Browse files
committed
minor refactoring
1 parent f6023c7 commit 938ab80

File tree

7 files changed

+18
-721
lines changed

7 files changed

+18
-721
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,7 @@ output.txt
2727
.php_cs.cache
2828
coverage.xml
2929
/coverage
30-
.phpunit.result.cache
30+
.phpunit.result.cache
31+
32+
access.log
33+
error.log

access.log

Lines changed: 0 additions & 706 deletions
This file was deleted.

database/seeds/Auth/UserTableSeeder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public function run()
2525
//Add the master administrator, user id of 1
2626
$users = [
2727
[
28-
'first_name' => 'Viral',
29-
'last_name' => 'Solani',
28+
'first_name' => 'Alan',
29+
'last_name' => 'Whitmore',
3030
'email' => '[email protected]',
3131
'password' => bcrypt('1234'),
3232
'confirmation_code' => md5(uniqid(mt_rand(), true)),
@@ -39,8 +39,8 @@ public function run()
3939
'uuid' => Str::uuid(),
4040
],
4141
[
42-
'first_name' => 'Vipul',
43-
'last_name' => 'Basapati',
42+
'first_name' => 'Justin',
43+
'last_name' => 'Bevan',
4444
'email' => '[email protected]',
4545
'password' => bcrypt('1234'),
4646
'confirmation_code' => md5(uniqid(mt_rand(), true)),

public/css/backend.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/frontend.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/backend.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/frontend.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)