Completed
Push — development ( 895d6a...1f768f )
by Ashutosh
08:56
created
app/Http/Controllers/Product/ExtendedBaseProductController.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             return $model->file;
43 43
         })
44 44
         ->addColumn('action', function ($model) {
45
-              return '<p><a href='.url('edit-upload/'.$model->id).
45
+                return '<p><a href='.url('edit-upload/'.$model->id).
46 46
                                 " class='btn btn-sm btn-primary btn-xs'><i class='fa fa-edit'
47 47
                                  style='color:white;'> </i>&nbsp;&nbsp;Edit</a>&nbsp</p>";
48 48
         })
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
         ->make(true);
51 51
     }
52 52
 
53
-   /**
54
-    * Go to edit Product Upload Page
55
-    *
56
-    * @date   2019-03-07T13:15:58+0530
57
-    *
58
-    * @param  int $id   Product Upload id 
59
-    *
60
-    */
53
+    /**
54
+     * Go to edit Product Upload Page
55
+     *
56
+     * @date   2019-03-07T13:15:58+0530
57
+     *
58
+     * @param  int $id   Product Upload id 
59
+     *
60
+     */
61 61
     public function editProductUpload($id) 
62 62
     {
63 63
         $model = ProductUpload::where('id',$id)->first();
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
             if ($product->require_domain == 1) {
120 120
                 $field .= "<div class='col-md-4 form-group'>
121 121
                         <label class='required'>"./* @scrutinizer ignore-type */
122
-                         \Lang::get('message.domain')."</label>
122
+                            \Lang::get('message.domain')."</label>
123 123
                         <input type='text' name='domain' class='form-control' 
124 124
                         id='domain' placeholder='http://example.com'>
125 125
                 </div>";
Please login to merge, or discard this patch.