@@ -57,7 +57,7 @@ |
||
57 | 57 | SystemDataFields::create([ |
58 | 58 | 'sys_id' => $sys->sys_id, |
59 | 59 | 'data_type_id' => $i, |
60 | - 'order' => $i-1, |
|
60 | + 'order' => $i - 1, |
|
61 | 61 | ]); |
62 | 62 | } |
63 | 63 | } |
@@ -12,9 +12,9 @@ |
||
12 | 12 | public function run() |
13 | 13 | { |
14 | 14 | // TODO: add seeders for demo setup |
15 | - $this->call(UserTableSeeder::class); |
|
16 | - $this->call(EquipmentSeeder::class); |
|
17 | - $this->call(CustomerSeeder::class); |
|
18 | - $this->call(TechTipsSeeder::class); |
|
15 | + $this->call(UserTableSeeder::class); |
|
16 | + $this->call(EquipmentSeeder::class); |
|
17 | + $this->call(CustomerSeeder::class); |
|
18 | + $this->call(TechTipsSeeder::class); |
|
19 | 19 | } |
20 | 20 | } |
@@ -5,7 +5,7 @@ |
||
5 | 5 | use App\Customers; |
6 | 6 | use Faker\Generator as Faker; |
7 | 7 | |
8 | -$factory->define(Customers::class, function (Faker $faker) { |
|
8 | +$factory->define(Customers::class, function(Faker $faker) { |
|
9 | 9 | return [ |
10 | 10 | 'cust_id' => $faker->unique()->numberBetween(50, 10000), |
11 | 11 | 'parent_id' => null, |
@@ -10,7 +10,7 @@ |
||
10 | 10 | 'first_name' => $faker->firstName, |
11 | 11 | 'last_name' => $faker->lastName, |
12 | 12 | 'email' => $faker->unique()->safeEmail, |
13 | - 'password' => bcrypt('password'), // All test users will have the password of 'password' to allow testing access |
|
13 | + 'password' => bcrypt('password'), // All test users will have the password of 'password' to allow testing access |
|
14 | 14 | 'remember_token' => null, // Str::random(10), |
15 | 15 | 'password_expires' => null, |
16 | 16 | ]; |