Passed
Push — master ( f4b030...a2b3af )
by Matthijs
22:06 queued 15:53
created
app/Http/Controllers/Backend/ExtraFieldController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@  discard block
 block discarded – undo
25 25
         if ($request->wantsJson()) {
26 26
 
27 27
             $query = ExtraFieldService::getModel()
28
-            ->select(['id', 'all_products','title'])
28
+            ->select(['id', 'all_products', 'title'])
29 29
             ->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id);
30 30
             
31 31
             $datatables = Datatables::of($query)
32 32
 
33
-            ->addColumn('category', function ($query) {
33
+            ->addColumn('category', function($query) {
34 34
                 if ($query->categories) {
35 35
                     $output = array();
36 36
                     foreach ($query->categories as $categorie) {
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                 }
42 42
             })
43 43
 
44
-            ->addColumn('action', function ($query) {
44
+            ->addColumn('action', function($query) {
45 45
                 $deleteLink = Form::deleteajax(url()->route('extra-field.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
46 46
                 $links = '<a href="'.url()->route('extra-field.values.index', $query->id).'" class="btn btn-default btn-sm btn-info"><i class="entypo-pencil"></i>'.$query->values->count().' values</a>
47 47
                  <a href="'.url()->route('extra-field.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
     public function store(Request $request)
65 65
     {
66
-        $result  = ExtraFieldService::create($request->all());
66
+        $result = ExtraFieldService::create($request->all());
67 67
         return ExtraFieldService::notificationRedirect('extra-field.index', $result, 'The extra field was inserted.');
68 68
     }
69 69
 
@@ -74,13 +74,13 @@  discard block
 block discarded – undo
74 74
 
75 75
     public function update(Request $request, $id)
76 76
     {
77
-        $result  = ExtraFieldService::updateById($request->all(), $id);
77
+        $result = ExtraFieldService::updateById($request->all(), $id);
78 78
         return ExtraFieldService::notificationRedirect('extra-field.index', $result, 'The extra field was updated.');
79 79
     }
80 80
 
81 81
     public function destroy($id)
82 82
     {
83
-        $result  = ExtraFieldService::destroy($id);
83
+        $result = ExtraFieldService::destroy($id);
84 84
 
85 85
         if ($result) {
86 86
             Notification::success('Extra field was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/CouponGroupController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
             ->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id);
26 26
 
27 27
             $datatables = \Datatables::of($query)
28
-            ->addColumn('action', function ($query) {
28
+            ->addColumn('action', function($query) {
29 29
                 $deleteLink = Form::deleteajax(url()->route('coupon-group.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-sm btn-danger'));
30 30
                 $links = '<a href="'.url()->route('coupon-group.edit', $query->id).'" class="btn btn-sm btn-success"><i class="fi-pencil"></i>Edit</a>  '.$deleteLink;
31 31
                 return $links;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function store(Request $request)
46 46
     {
47
-        $result  = CouponService::createGroup($request->all());
47
+        $result = CouponService::createGroup($request->all());
48 48
         return CouponService::notificationRedirect('coupon-group.index', $result, 'The coupon group was inserted.');
49 49
     }
50 50
 
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function update(Request $request, $couponGroupId)
57 57
     {
58
-        $result  = CouponService::updateGroupById($request->all(), $couponGroupId);
58
+        $result = CouponService::updateGroupById($request->all(), $couponGroupId);
59 59
         return CouponService::notificationRedirect('coupon-group.index', $result, 'The coupon group was updated.');
60 60
     }
61 61
 
62 62
     public function destroy($couponGroupId)
63 63
     {
64
-        $result  = CouponService::destroyGroup($couponGroupId);
64
+        $result = CouponService::destroyGroup($couponGroupId);
65 65
 
66 66
         if ($result) {
67 67
             Notification::success('The coupon was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/CouponController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     public function index(Request $request)
29 29
     {
30 30
         if ($request->wantsJson()) {
31
-            $query = CouponService::getModel()->select(['active','id', 'title', 'code'])
31
+            $query = CouponService::getModel()->select(['active', 'id', 'title', 'code'])
32 32
             ->where(CouponService::getModel()->getTable().'.shop_id', '=', auth('hideyobackend')->user()->selected_shop_id)
33 33
 
34 34
 
@@ -36,12 +36,12 @@  discard block
 block discarded – undo
36 36
             
37 37
             $datatables = Datatables::of($query)
38 38
 
39
-            ->filterColumn('title', function ($query, $keyword) {
39
+            ->filterColumn('title', function($query, $keyword) {
40 40
                 $query->whereRaw("coupon.title like ?", ["%{$keyword}%"]);
41 41
             })
42 42
 
43
-            ->addColumn('action', function ($query) {
44
-                $deleteLink = Form::deleteajax('/admin/coupon/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
43
+            ->addColumn('action', function($query) {
44
+                $deleteLink = Form::deleteajax('/admin/coupon/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
45 45
                 $links = '<a href="/admin/coupon/'.$query->id.'/edit" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
46 46
             
47 47
                 return $links;
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     public function store(Request $request)
68 68
     {
69
-        $result  = CouponService::create($request->all());
69
+        $result = CouponService::create($request->all());
70 70
         return CouponService::notificationRedirect('coupon.index', $result, 'The coupon was inserted.');
71 71
     }
72 72
 
@@ -86,13 +86,13 @@  discard block
 block discarded – undo
86 86
 
87 87
     public function update(Request $request, $couponId)
88 88
     {
89
-        $result  = CouponService::updateById($request->all(), $couponId);
89
+        $result = CouponService::updateById($request->all(), $couponId);
90 90
         return CouponService::notificationRedirect('coupon.index', $result, 'The coupon was updated.');
91 91
     }
92 92
 
93 93
     public function destroy($couponId)
94 94
     {
95
-        $result  = CouponService::destroy($couponId);
95
+        $result = CouponService::destroy($couponId);
96 96
 
97 97
         if ($result) {
98 98
             Notification::success('The coupon was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/ClientController.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@  discard block
 block discarded – undo
24 24
 {
25 25
     public function index(Request $request)
26 26
     {
27
-        $shop  = auth('hideyobackend')->user()->shop;
27
+        $shop = auth('hideyobackend')->user()->shop;
28 28
 
29 29
         if ($request->wantsJson()) {
30
-            $shop  = auth('hideyobackend')->user()->shop();
30
+            $shop = auth('hideyobackend')->user()->shop();
31 31
             $clients = ClientService::getModel()->select(
32 32
                 [
33 33
                 
@@ -38,11 +38,11 @@  discard block
 block discarded – undo
38 38
             $datatables = Datatables::of($clients)
39 39
 
40 40
 
41
-            ->addColumn('last_login', function ($clients) {
41
+            ->addColumn('last_login', function($clients) {
42 42
                 return date('d F H:i', strtotime($clients->last_login));
43 43
             })
44 44
 
45
-            ->addColumn('action', function ($clients) {
45
+            ->addColumn('action', function($clients) {
46 46
                 $deleteLink = Form::deleteajax(url()->route('client.destroy', $clients->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
47 47
                 $links = '<a href="'.url()->route('client.edit', $clients->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Show</a>  '.$deleteLink;
48 48
             
@@ -79,11 +79,11 @@  discard block
 block discarded – undo
79 79
     public function postActivate(Request $request, $clientId)
80 80
     {
81 81
         $input = $request->all();
82
-        $result  = ClientService::activate($clientId);
82
+        $result = ClientService::activate($clientId);
83 83
         $shop  = auth('hideyobackend')->user()->shop;
84 84
 
85 85
         if ($input['send_mail']) {
86
-                Mail::send('frontend.email.activate-mail', array('user' => $result->toArray(), 'billAddress' => $result->clientBillAddress->toArray()), function ($message) use ($result) {
86
+                Mail::send('frontend.email.activate-mail', array('user' => $result->toArray(), 'billAddress' => $result->clientBillAddress->toArray()), function($message) use ($result) {
87 87
                     $message->to($result['email'])->from('[email protected]', 'Hideyo')->subject('Toegang tot account.');
88 88
                 });
89 89
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
     public function store(Request $request)
105 105
     {
106
-        $result  = ClientService::create($request->all());
106
+        $result = ClientService::create($request->all());
107 107
         return ClientService::notificationRedirect('client.index', $result, 'The client was inserted.');
108 108
     }
109 109
 
@@ -134,24 +134,24 @@  discard block
 block discarded – undo
134 134
 
135 135
     public function postExport()
136 136
     {
137
-        $result  =  ClientService::selectAllExport();
138
-        Excel::create('export', function ($excel) use ($result) {
137
+        $result = ClientService::selectAllExport();
138
+        Excel::create('export', function($excel) use ($result) {
139 139
 
140
-            $excel->sheet('Clients', function ($sheet) use ($result) {
140
+            $excel->sheet('Clients', function($sheet) use ($result) {
141 141
                 $newArray = array();
142 142
                 foreach ($result as $row) {
143 143
                     $firstname = null;
144
-                    if($row->clientBillAddress) {
144
+                    if ($row->clientBillAddress) {
145 145
                         $firstname = $row->clientBillAddress->firstname;
146 146
                     }
147 147
 
148 148
                     $lastname = null;
149
-                    if($row->clientBillAddress) {
149
+                    if ($row->clientBillAddress) {
150 150
                         $lastname = $row->clientBillAddress->lastname;
151 151
                     }
152 152
 
153 153
                     $gender = null;
154
-                    if($row->clientBillAddress) {
154
+                    if ($row->clientBillAddress) {
155 155
                         $gender = $row->clientBillAddress->gender;
156 156
                     }
157 157
 
@@ -175,14 +175,14 @@  discard block
 block discarded – undo
175 175
 
176 176
     public function update(Request $request, $clientId)
177 177
     {
178
-        $result  = ClientService::updateById($request->all(), $clientId);
178
+        $result = ClientService::updateById($request->all(), $clientId);
179 179
         $input = $request->all();
180 180
         if (isset($result->id)) {
181 181
             if ($result->active) {
182
-                $shop  = auth('hideyobackend')->user()->shop;
182
+                $shop = auth('hideyobackend')->user()->shop;
183 183
 
184 184
                 if ($input['send_mail']) {
185
-                    Mail::send('frontend.email.activate-mail', array('user' => $result->toArray(), 'billAddress' => $result->clientBillAddress->toArray()), function ($message) use ($result) {
185
+                    Mail::send('frontend.email.activate-mail', array('user' => $result->toArray(), 'billAddress' => $result->clientBillAddress->toArray()), function($message) use ($result) {
186 186
                         $message->to($result['email'])->from('[email protected]', 'Hideyo')->subject('Toegang tot account.');
187 187
                     });
188 188
 
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 
204 204
     public function destroy($clientId)
205 205
     {
206
-        $result  = ClientService::destroy($clientId);
206
+        $result = ClientService::destroy($clientId);
207 207
 
208 208
         if ($result) {
209 209
             Notification::success('The client was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/BrandImageController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -23,15 +23,15 @@  discard block
 block discarded – undo
23 23
         if ($request->wantsJson()) {
24 24
 
25 25
             $image = BrandService::getModelImage()
26
-            ->select(['id','file', 'brand_id'])
26
+            ->select(['id', 'file', 'brand_id'])
27 27
             ->where('brand_id', '=', $brandId);
28 28
             
29 29
             $datatables = Datatables::of($image)
30 30
 
31
-            ->addColumn('thumb', function ($image) use ($brandId) {
31
+            ->addColumn('thumb', function($image) use ($brandId) {
32 32
                 return '<img src="'.config('hideyo.public_path').'/brand/100x100/'.$image->brand_id.'/'.$image->file.'"  />';
33 33
             })
34
-            ->addColumn('action', function ($image) use ($brandId) {
34
+            ->addColumn('action', function($image) use ($brandId) {
35 35
                 $deleteLink = Form::deleteajax(url()->route('brand.images.destroy', array('brandId' => $brandId, 'id' => $image->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
36 36
                 $links = '<a href="'.url()->route('brand.images.edit', array('brandId' => $brandId, 'id' => $image->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
37 37
                 return $links;
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             return $datatables->make(true);
41 41
         }
42 42
         
43
-        return view('backend.brand_image.index')->with(array( 'brand' => $brand));
43
+        return view('backend.brand_image.index')->with(array('brand' => $brand));
44 44
     }
45 45
 
46 46
     public function create($brandId)
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     public function store(Request $request, $brandId)
53 53
     {
54
-        $result  = BrandService::createImage($request->all(), $brandId);
54
+        $result = BrandService::createImage($request->all(), $brandId);
55 55
         return BrandService::notificationRedirect(array('brand.images.index', $brandId), $result, 'The brand image was inserted.');
56 56
     }
57 57
 
@@ -63,13 +63,13 @@  discard block
 block discarded – undo
63 63
 
64 64
     public function update(Request $request, $brandId, $brandImageId)
65 65
     {
66
-        $result  = BrandService::updateImageById($request->all(), $brandId, $brandImageId);
66
+        $result = BrandService::updateImageById($request->all(), $brandId, $brandImageId);
67 67
         return BrandService::notificationRedirect(array('brand.images.index', $brandId), $result, 'The brand image was updated.');
68 68
     }
69 69
 
70 70
     public function destroy($brandId, $brandImageId)
71 71
     {
72
-        $result  = BrandService::destroyImage($brandImageId);
72
+        $result = BrandService::destroyImage($brandImageId);
73 73
 
74 74
         if ($result) {
75 75
             Notification::success('The file was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/NewsImageController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,14 +29,14 @@  discard block
 block discarded – undo
29 29
             
30 30
             $datatables = Datatables::of($image)
31 31
 
32
-            ->addColumn('thumb', function ($image) use ($newsId) {
32
+            ->addColumn('thumb', function($image) use ($newsId) {
33 33
 
34 34
 
35 35
                 return '<img src="/files/news/100x100/'.$image->news_id.'/'.$image->file.'"  />';
36 36
             })
37 37
 
38 38
 
39
-            ->addColumn('action', function ($image) use ($newsId) {
39
+            ->addColumn('action', function($image) use ($newsId) {
40 40
                 $deleteLink = Form::deleteajax(url()->route('news-images.destroy', array('newsId' => $newsId, 'id' => $image->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
41 41
                 $links = '<a href="'.url()->route('news-images.edit', array('newsId' => $newsId, 'id' => $image->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
42 42
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     public function store(Request $request, $newsId)
59 59
     {
60
-        $result  = NewsService::createImage($request->all(), $newsId);
60
+        $result = NewsService::createImage($request->all(), $newsId);
61 61
         return NewsService::notificationRedirect(array('news-images.index', $newsId), $result, 'The news image was inserted.');
62 62
     }
63 63
 
@@ -69,13 +69,13 @@  discard block
 block discarded – undo
69 69
 
70 70
     public function update(Request $request, $newsId, $newsImageId)
71 71
     {
72
-        $result  = NewsService::updateImageById($request->all(), $newsId, $newsImageId);
72
+        $result = NewsService::updateImageById($request->all(), $newsId, $newsImageId);
73 73
         return NewsService::notificationRedirect(array('news-images.index', $newsId), $result, 'The news image was updated.');
74 74
     }
75 75
 
76 76
     public function destroy($newsId, $newsImageId)
77 77
     {
78
-        $result  = NewsService::destroyImage($newsImageId);
78
+        $result = NewsService::destroyImage($newsImageId);
79 79
 
80 80
         if ($result) {
81 81
             Notification::success('The file was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/NewsGroupController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             )->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id);
29 29
 
30 30
             $datatables = \Datatables::of($query)
31
-            ->addColumn('action', function ($query) {
31
+            ->addColumn('action', function($query) {
32 32
                 $deleteLink = \Form::deleteajax(url()->route('news-group.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
33 33
                 $links = '<a href="'.url()->route('news-group.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
34 34
             
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     public function store(Request $request)
51 51
     {
52
-        $result  = NewsService::createGroup($request->all());
52
+        $result = NewsService::createGroup($request->all());
53 53
         return NewsService::notificationRedirect('news-group.index', $result, 'The news group was inserted.');
54 54
     }
55 55
 
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
 
61 61
     public function update(Request $request, $newsGroupId)
62 62
     {
63
-        $result  = NewsService::updateGroupById($request->all(), $newsGroupId);
63
+        $result = NewsService::updateGroupById($request->all(), $newsGroupId);
64 64
         return NewsService::notificationRedirect('news-group.index', $result, 'The news group was updated.');
65 65
     }
66 66
 
67 67
     public function destroy($newsGroupId)
68 68
     {
69
-        $result  = NewsService::destroyGroup($newsGroupId);
69
+        $result = NewsService::destroyGroup($newsGroupId);
70 70
 
71 71
         if ($result) {
72 72
             Notification::success('The news group was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/NewsController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -31,20 +31,20 @@  discard block
 block discarded – undo
31 31
             ->with(array('newsGroup'))        ->leftJoin(NewsService::getGroupModel()->getTable(), NewsService::getGroupModel()->getTable().'.id', '=', 'news_group_id');
32 32
             
33 33
             $datatables = Datatables::of($query)
34
-            ->filterColumn('title', function ($query, $keyword) {
34
+            ->filterColumn('title', function($query, $keyword) {
35 35
 
36 36
                 $query->where(
37
-                    function ($query) use ($keyword) {
37
+                    function($query) use ($keyword) {
38 38
                         $query->whereRaw("news.title like ?", ["%{$keyword}%"]);
39 39
                         ;
40 40
                     }
41 41
                 );
42 42
             })
43
-            ->addColumn('newsgroup', function ($query) {
43
+            ->addColumn('newsgroup', function($query) {
44 44
                 return $query->newstitle;
45 45
             })
46 46
 
47
-            ->addColumn('action', function ($query) {
47
+            ->addColumn('action', function($query) {
48 48
                 $deleteLink = Form::deleteajax(url()->route('news.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
49 49
                 $links = '<a href="'.url()->route('news.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
50 50
             
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
     public function store(Request $request)
67 67
     {
68
-        $result  = NewsService::create($request->all());
68
+        $result = NewsService::create($request->all());
69 69
         return NewsService::notificationRedirect('news.index', $result, 'The news item was inserted.');
70 70
     }
71 71
 
@@ -90,13 +90,13 @@  discard block
 block discarded – undo
90 90
     
91 91
     public function update(Request $request, $newsId)
92 92
     {
93
-        $result  = NewsService::updateById($request->all(), $newsId);
93
+        $result = NewsService::updateById($request->all(), $newsId);
94 94
         return NewsService::notificationRedirect('news.index', $result, 'The news item was inserted.');
95 95
     }
96 96
 
97 97
     public function destroy($newsId)
98 98
     {
99
-        $result  = NewsService::destroy($newsId);
99
+        $result = NewsService::destroy($newsId);
100 100
 
101 101
         if ($result) {
102 102
             Notification::success('The news was deleted.');
Please login to merge, or discard this patch.
app/Http/Controllers/Backend/OrderStatusController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -30,12 +30,12 @@  discard block
 block discarded – undo
30 30
         if ($request->wantsJson()) {
31 31
 
32 32
             $query = OrderStatusService::getModel()->select(
33
-                ['id', 'color','title']
33
+                ['id', 'color', 'title']
34 34
             )->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id);
35 35
             
36 36
             $datatables = \Datatables::of($query)
37 37
 
38
-            ->addColumn('title', function ($query) {
38
+            ->addColumn('title', function($query) {
39 39
      
40 40
                 if ($query->color) {
41 41
                     return '<span style="background-color:'.$query->color.'; padding: 10px; line-height:30px; text-align:center; color:white;">'.$query->title.'</span>';
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
             })
45 45
 
46 46
 
47
-            ->addColumn('action', function ($query) {
48
-                $deleteLink = \Form::deleteajax('/admin/order-status/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
47
+            ->addColumn('action', function($query) {
48
+                $deleteLink = \Form::deleteajax('/admin/order-status/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger'));
49 49
                 $links = '<a href="/admin/order-status/'.$query->id.'/edit" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>  '.$deleteLink;
50 50
             
51 51
                 return $links;
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     public function store(Request $request)
68 68
     {
69
-        $result  = OrderStatusService::create($request->all());
69
+        $result = OrderStatusService::create($request->all());
70 70
         return OrderStatusService::notificationRedirect('order-status.index', $result, 'The order status was inserted.');
71 71
     }
72 72
 
@@ -87,13 +87,13 @@  discard block
 block discarded – undo
87 87
 
88 88
     public function update(Request $request, $orderStatusId)
89 89
     {
90
-        $result  = OrderStatusService::updateById($request->all(), $orderStatusId);
90
+        $result = OrderStatusService::updateById($request->all(), $orderStatusId);
91 91
         return OrderStatusService::notificationRedirect('order-status.index', $result, 'The order status was updated.');
92 92
     }
93 93
 
94 94
     public function destroy($orderStatusId)
95 95
     {
96
-        $result  = OrderStatusService::destroy($orderStatusId);
96
+        $result = OrderStatusService::destroy($orderStatusId);
97 97
 
98 98
         if ($result) {
99 99
             Notification::success('The order status was deleted.');
Please login to merge, or discard this patch.