Passed
Push — main ( 93d181...6c645c )
by PRATIK
15:49
created
database/migrations/2023_05_10_075236_create_popups_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_115320_create_projects_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_041835_create_galleries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
database/migrations/2023_05_09_101723_create_counters_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_055608_create_notices_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2023_07_17_095004_create_abouts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2023_05_11_074536_create_posts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2023_05_25_103403_create_inquiries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
database/migrations/2023_05_10_084048_create_testimonials_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.