@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function up(): void |
13 | 13 | { |
14 | - Schema::create(config('website.table_prefix', 'website').'_'.'payments', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'payments', function(Blueprint $table) { |
|
15 | 15 | $table->id(); |
16 | 16 | $table->foreignId('user_id')->nullable()->constrained()->nullOnDelete(); |
17 | 17 | $table->integer('type')->default(1); |
@@ -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').'_'.'packages', function (Blueprint $table) { |
|
14 | + Schema::create(config('website.table_prefix', 'website').'_'.'packages', 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'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create(config('website.table_prefix', 'website').'_'.'messages', function (Blueprint $table) { |
|
16 | + Schema::create(config('website.table_prefix', 'website').'_'.'messages', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('email')->nullable(); |
@@ -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(); |