@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | protected function mapWebRoutes() |
53 | 53 | { |
54 | 54 | Route::middleware('web') |
55 | - ->namespace($this->namespace) |
|
56 | - ->group(base_path('routes/web.php')); |
|
55 | + ->namespace($this->namespace) |
|
56 | + ->group(base_path('routes/web.php')); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | protected function mapApiRoutes() |
67 | 67 | { |
68 | 68 | Route::prefix('api') |
69 | - ->middleware('api') |
|
70 | - ->namespace($this->namespace) |
|
71 | - ->group(base_path('routes/api.php')); |
|
69 | + ->middleware('api') |
|
70 | + ->namespace($this->namespace) |
|
71 | + ->group(base_path('routes/api.php')); |
|
72 | 72 | } |
73 | 73 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | public function up() |
16 | 16 | { |
17 | - Schema::create('customer_file_types', function (Blueprint $table) { |
|
17 | + Schema::create('customer_file_types', function(Blueprint $table) { |
|
18 | 18 | $table->increments('file_type_id'); |
19 | 19 | $table->text('description'); |
20 | 20 | $table->timestamps(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('system_cust_data_fields', function (Blueprint $table) { |
|
16 | + Schema::create('system_cust_data_fields', function(Blueprint $table) { |
|
17 | 17 | $table->increments('field_id'); |
18 | 18 | $table->integer('sys_id')->unsigned(); |
19 | 19 | $table->integer('data_type_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('notifications', function (Blueprint $table) { |
|
16 | + Schema::create('notifications', function(Blueprint $table) { |
|
17 | 17 | $table->uuid('id')->primary(); |
18 | 18 | $table->string('type'); |
19 | 19 | $table->morphs('notifiable'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('file_link_instructions', function (Blueprint $table) { |
|
16 | + Schema::create('file_link_instructions', function(Blueprint $table) { |
|
17 | 17 | $table->increments('link_instructions_id'); |
18 | 18 | $table->integer('link_id')->unsigned(); |
19 | 19 | $table->longText('instruction')->nullable(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('system_files', function (Blueprint $table) { |
|
16 | + Schema::create('system_files', function(Blueprint $table) { |
|
17 | 17 | $table->increments('sys_file_id'); |
18 | 18 | $table->integer('sys_id')->unsigned(); |
19 | 19 | $table->integer('type_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('customer_favs', function (Blueprint $table) { |
|
16 | + Schema::create('customer_favs', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->integer('user_id')->unsigned(); |
19 | 19 | $table->integer('cust_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('files', function (Blueprint $table) { |
|
16 | + Schema::create('files', function(Blueprint $table) { |
|
17 | 17 | $table->increments('file_id'); |
18 | 18 | $table->string('file_name'); |
19 | 19 | $table->string('file_link'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('system_categories', function (Blueprint $table) { |
|
16 | + Schema::create('system_categories', function(Blueprint $table) { |
|
17 | 17 | $table->increments('cat_id'); |
18 | 18 | $table->string('name')->unique(); |
19 | 19 | $table->timestamps(); |