@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'popups', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'popups', 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') . '_' . 'projects', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'projects', 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') . '_' . 'galleries', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'galleries', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('name'); |
| 17 | 17 | $table->string('slug')->unique(); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'counters', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'counters', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('name'); |
| 17 | 17 | $table->string('icon'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'notices', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'notices', 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') . '_' . 'abouts', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'abouts', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('title'); |
| 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') . '_' . 'posts', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'posts', 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') . '_' . 'inquiries', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'inquiries', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('name'); |
| 17 | 17 | $table->string('phone'); |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up(): void |
| 13 | 13 | { |
| 14 | - Schema::create(config('website.table_prefix', 'website') . '_' . 'testimonials', function (Blueprint $table) { |
|
| 14 | + Schema::create(config('website.table_prefix', 'website').'_'.'testimonials', function(Blueprint $table) { |
|
| 15 | 15 | $table->id(); |
| 16 | 16 | $table->string('name'); |
| 17 | 17 | $table->string('email')->nullable(); |