@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'features', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'features', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('slug'); |
| 17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'histories', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'histories', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('title')->nullable(); |
| 17 | 17 | $table->text('description')->nullable(); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'facilities', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'facilities', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('slug'); |
| 17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'attributes', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'attributes', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('code')->unique(); |
| 17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'services', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'services', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('slug'); |
| 17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'categories', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'categories', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('slug'); |
| 17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'teams', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'teams', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('name'); |
| 17 | 17 | $table->string('slug'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'processes', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'processes', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('slug'); |
| 17 | 17 | $table->string('name'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'sliders', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'sliders', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('title')->nullable(); |
| 17 | 17 | $table->text('text')->nullable(); |