Completed
Push — master ( 20c7c7...fa6eea )
by Scott
02:26
created
models/Promotion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     public function filterFields($fields)
84 84
     {
85 85
         $fields->amount_exact->hidden = $this->is_percentage;
86
-        $fields->amount_percentage->hidden = ! $this->is_percentage;
86
+        $fields->amount_percentage->hidden = !$this->is_percentage;
87 87
     }
88 88
 
89 89
     /**
Please login to merge, or discard this patch.
updates/1.0/create_promotions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('bedard_shop_promotions', function (Blueprint $table) {
11
+        Schema::create('bedard_shop_promotions', function(Blueprint $table) {
12 12
             $table->engine = 'InnoDB';
13 13
             $table->increments('id');
14 14
             $table->string('name')->default('');
Please login to merge, or discard this patch.