@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | 'name'] |
37 | 37 | )->where('sending_method_id', '=', $sendingMethodId); |
38 | 38 | |
39 | - $datatables = \Datatables::of($users)->addColumn('action', function ($users) use ($sendingMethodId) { |
|
39 | + $datatables = \Datatables::of($users)->addColumn('action', function($users) use ($sendingMethodId) { |
|
40 | 40 | $delete = \Form::deleteajax(url()->route('sending-method.country-prices.destroy', array('sendingMethodId' => $sendingMethodId, 'id' => $users->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
41 | 41 | $link = '<a href="'.url()->route('sending-method.country-prices.edit', array('sendingMethodId' => $sendingMethodId, 'id' => $users->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$delete; |
42 | 42 | |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | $countries = \Excel::load($file, function($reader) { |
72 | 72 | })->get(); |
73 | 73 | |
74 | - if($countries) { |
|
75 | - $result = SendingMethodService::importCountries($countries, $this->request->get('tax_rate_id'), $sendingMethodId); |
|
74 | + if ($countries) { |
|
75 | + $result = SendingMethodService::importCountries($countries, $this->request->get('tax_rate_id'), $sendingMethodId); |
|
76 | 76 | Notification::success('The countries are inserted.'); |
77 | 77 | return redirect()->route('sending-method.country-prices.index', $sendingMethodId); |
78 | 78 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | public function store($sendingMethodId) |
82 | 82 | { |
83 | - $result = SendingMethodService::createCountry($this->request->all(), $sendingMethodId); |
|
83 | + $result = SendingMethodService::createCountry($this->request->all(), $sendingMethodId); |
|
84 | 84 | return SendingMethodService::notificationRedirect(array('sending-method.country-prices.index', $sendingMethodId), $result, 'The country was inserted.'); |
85 | 85 | } |
86 | 86 | |
@@ -95,13 +95,13 @@ discard block |
||
95 | 95 | |
96 | 96 | public function update($sendingMethodId, $id) |
97 | 97 | { |
98 | - $result = SendingMethodService::updateCountryById($this->request->all(), $id); |
|
98 | + $result = SendingMethodService::updateCountryById($this->request->all(), $id); |
|
99 | 99 | return SendingMethodService::notificationRedirect(array('sending-method.country-prices.index', $sendingMethodId), $result, 'The country was updated.'); |
100 | 100 | } |
101 | 101 | |
102 | 102 | public function destroy($sendingMethodId, $id) |
103 | 103 | { |
104 | - $result = SendingMethodService::destroyCountry($id); |
|
104 | + $result = SendingMethodService::destroyCountry($id); |
|
105 | 105 | |
106 | 106 | if ($result) { |
107 | 107 | Notification::success('The country price was deleted.'); |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | if ($request->wantsJson()) { |
31 | 31 | |
32 | 32 | $query = AttributeService::getGroupModel() |
33 | - ->select(['id','title']) |
|
33 | + ->select(['id', 'title']) |
|
34 | 34 | ->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id); |
35 | 35 | |
36 | - $datatables = Datatables::of($query)->addColumn('action', function ($query) { |
|
36 | + $datatables = Datatables::of($query)->addColumn('action', function($query) { |
|
37 | 37 | $deleteLink = Form::deleteajax(url()->route('attribute-group.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
38 | 38 | $links = ' |
39 | 39 | <a href="'.url()->route('attribute.index', $query->id).'" class="btn btn-sm btn-info"><i class="entypo-pencil"></i>'.$query->attributes->count().' Attributes</a> |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function store(Request $request) |
57 | 57 | { |
58 | - $result = AttributeService::createGroup($request->all()); |
|
58 | + $result = AttributeService::createGroup($request->all()); |
|
59 | 59 | return AttributeService::notificationRedirect('attribute-group.index', $result, 'The attribute group was inserted.'); |
60 | 60 | } |
61 | 61 | |
@@ -66,13 +66,13 @@ discard block |
||
66 | 66 | |
67 | 67 | public function update(Request $request, $attributeGroupId) |
68 | 68 | { |
69 | - $result = AttributeService::updateGroupById($request->all(), $attributeGroupId); |
|
69 | + $result = AttributeService::updateGroupById($request->all(), $attributeGroupId); |
|
70 | 70 | return AttributeService::notificationRedirect('attribute-group.index', $result, 'The attribute group was updated.'); |
71 | 71 | } |
72 | 72 | |
73 | 73 | public function destroy($attributeGroupId) |
74 | 74 | { |
75 | - $result = AttributeService::destroyGroup($attributeGroupId); |
|
75 | + $result = AttributeService::destroyGroup($attributeGroupId); |
|
76 | 76 | |
77 | 77 | if ($result) { |
78 | 78 | Notification::success('Attribute group was deleted.'); |
@@ -29,11 +29,11 @@ discard block |
||
29 | 29 | $query = ProductService::getImageModel()->where('product_id', '=', $productId); |
30 | 30 | |
31 | 31 | $datatables = \Datatables::of($query) |
32 | - ->addColumn('thumb', function ($query) use ($productId) { |
|
32 | + ->addColumn('thumb', function($query) use ($productId) { |
|
33 | 33 | return '<img src="/files/product/100x100/'.$query->product_id.'/'.$query->file.'" />'; |
34 | 34 | }) |
35 | 35 | |
36 | - ->addColumn('action', function ($query) use ($productId) { |
|
36 | + ->addColumn('action', function($query) use ($productId) { |
|
37 | 37 | $deleteLink = \Form::deleteajax(url()->route('product.images.destroy', array('productId' => $productId, 'id' => $query->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
38 | 38 | $links = '<a href="'.url()->route('product.images.edit', array('productId' => $productId, 'id' => $query->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
39 | 39 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function store($productId) |
57 | 57 | { |
58 | - $result = ProductService::createImage($this->request->all(), $productId); |
|
58 | + $result = ProductService::createImage($this->request->all(), $productId); |
|
59 | 59 | return ProductService::notificationRedirect(array('product.images.index', $productId), $result, 'The product image was inserted.'); |
60 | 60 | } |
61 | 61 | |
@@ -69,13 +69,13 @@ discard block |
||
69 | 69 | |
70 | 70 | if ($productImage->relatedProductAttributes->count()) { |
71 | 71 | foreach ($productImage->relatedProductAttributes as $row) { |
72 | - $selectedProductAttributes[] = $row->pivot->product_attribute_id; |
|
72 | + $selectedProductAttributes[] = $row->pivot->product_attribute_id; |
|
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | 76 | if ($productImage->relatedAttributes->count()) { |
77 | 77 | foreach ($productImage->relatedAttributes as $row) { |
78 | - $selectedAttributes[] = $row->pivot->attribute_id; |
|
78 | + $selectedAttributes[] = $row->pivot->attribute_id; |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | public function generateAttributeLists($product) |
86 | 86 | { |
87 | - $productAttributes = $product->attributes; |
|
87 | + $productAttributes = $product->attributes; |
|
88 | 88 | $newProductAttributes = array(); |
89 | 89 | $attributesList = array(); |
90 | 90 | $productAttributesList = array(); |
@@ -114,13 +114,13 @@ discard block |
||
114 | 114 | |
115 | 115 | public function update($productId, $productImageId) |
116 | 116 | { |
117 | - $result = ProductService::updateImageById($this->request->all(), $productId, $productImageId); |
|
117 | + $result = ProductService::updateImageById($this->request->all(), $productId, $productImageId); |
|
118 | 118 | return ProductService::notificationRedirect(array('product.images.index', $productId), $result, 'The product image was update.'); |
119 | 119 | } |
120 | 120 | |
121 | 121 | public function destroy($productId, $productImageId) |
122 | 122 | { |
123 | - $result = ProductService::destroyImage($productImageId); |
|
123 | + $result = ProductService::destroyImage($productImageId); |
|
124 | 124 | |
125 | 125 | if ($result) { |
126 | 126 | Notification::success('The product image is deleted.'); |
@@ -24,11 +24,11 @@ |
||
24 | 24 | [ |
25 | 25 | |
26 | 26 | 'id', |
27 | - 'class', 'file' , 'status_code', 'line', 'message', 'url', 'method'] |
|
27 | + 'class', 'file', 'status_code', 'line', 'message', 'url', 'method'] |
|
28 | 28 | ); |
29 | 29 | |
30 | - $datatables = \Datatables::of($query)->addColumn('action', function ($query) { |
|
31 | - $deleteLink = \Form::deleteajax('/admin/general-setting/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
30 | + $datatables = \Datatables::of($query)->addColumn('action', function($query) { |
|
31 | + $deleteLink = \Form::deleteajax('/admin/general-setting/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
32 | 32 | $links = '<a href="/admin/general-setting/'.$query->id.'/edit" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
33 | 33 | |
34 | 34 | return $links; |
@@ -46,7 +46,7 @@ |
||
46 | 46 | |
47 | 47 | public function store($productId, Request $request) |
48 | 48 | { |
49 | - $result = ProductExtraFieldValueService::create($request->all(), $productId); |
|
49 | + $result = ProductExtraFieldValueService::create($request->all(), $productId); |
|
50 | 50 | return ProductExtraFieldValueService::notificationRedirect(array('product.product-extra-field-value.index', $productId), $result, 'The product extra fields are updated.'); |
51 | 51 | } |
52 | 52 | } |
@@ -25,11 +25,11 @@ discard block |
||
25 | 25 | $query = RedirectService::selectAll(); |
26 | 26 | $datatables = \Datatables::of($query) |
27 | 27 | |
28 | - ->addColumn('url', function ($query) { |
|
28 | + ->addColumn('url', function($query) { |
|
29 | 29 | return '<a href="'.$query->url.'" target="_blank">'.$query->url.'</a>'; |
30 | 30 | }) |
31 | 31 | |
32 | - ->addColumn('action', function ($query) { |
|
32 | + ->addColumn('action', function($query) { |
|
33 | 33 | $deleteLink = \Form::deleteajax(url()->route('redirect.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
34 | 34 | $links = '<a href="'.url()->route('redirect.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
35 | 35 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | public function store() |
53 | 53 | { |
54 | - $result = RedirectService::create(Request::all()); |
|
54 | + $result = RedirectService::create(Request::all()); |
|
55 | 55 | return RedirectService::notificationRedirect('redirect.index', $result, 'The redirect was inserted.'); |
56 | 56 | } |
57 | 57 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | public function postImport() |
73 | 73 | { |
74 | 74 | $file = Request::file('file'); |
75 | - Excel::load($file, function ($reader) { |
|
75 | + Excel::load($file, function($reader) { |
|
76 | 76 | |
77 | 77 | $results = $reader->get(); |
78 | 78 | |
@@ -91,11 +91,11 @@ discard block |
||
91 | 91 | |
92 | 92 | public function getExport() |
93 | 93 | { |
94 | - $result = RedirectService::selectAll(); |
|
94 | + $result = RedirectService::selectAll(); |
|
95 | 95 | |
96 | - Excel::create('redirects', function ($excel) use ($result) { |
|
96 | + Excel::create('redirects', function($excel) use ($result) { |
|
97 | 97 | |
98 | - $excel->sheet('Redirects', function ($sheet) use ($result) { |
|
98 | + $excel->sheet('Redirects', function($sheet) use ($result) { |
|
99 | 99 | $newArray = array(); |
100 | 100 | foreach ($result as $row) { |
101 | 101 | $newArray[$row->id] = array( |
@@ -112,13 +112,13 @@ discard block |
||
112 | 112 | |
113 | 113 | public function update($redirectId) |
114 | 114 | { |
115 | - $result = RedirectService::updateById(Request::all(), $redirectId); |
|
115 | + $result = RedirectService::updateById(Request::all(), $redirectId); |
|
116 | 116 | return RedirectService::notificationRedirect('redirect.index', $result, 'The redirect was updated.'); |
117 | 117 | } |
118 | 118 | |
119 | 119 | public function destroy($redirectId) |
120 | 120 | { |
121 | - $result = RedirectService::destroy($redirectId); |
|
121 | + $result = RedirectService::destroy($redirectId); |
|
122 | 122 | |
123 | 123 | if ($result) { |
124 | 124 | Notification::success('Redirect item is deleted.'); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | { |
34 | 34 | $product = ProductService::find($productId); |
35 | 35 | |
36 | - if($product) { |
|
36 | + if ($product) { |
|
37 | 37 | if ($this->request->wantsJson()) { |
38 | 38 | |
39 | 39 | $query = ProductCombinationService::getModel()->select( |
@@ -41,18 +41,18 @@ discard block |
||
41 | 41 | 'default_on'] |
42 | 42 | )->where('product_id', '=', $productId); |
43 | 43 | |
44 | - $datatables = \Datatables::of($query)->addColumn('action', function ($query) use ($productId) { |
|
44 | + $datatables = \Datatables::of($query)->addColumn('action', function($query) use ($productId) { |
|
45 | 45 | $deleteLink = \Form::deleteajax(url()->route('product-combination.destroy', array('productId' => $productId, 'id' => $query->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
46 | 46 | $links = '<a href="'.url()->route('product-combination.edit', array('productId' => $productId, 'id' => $query->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
47 | 47 | |
48 | 48 | return $links; |
49 | 49 | }) |
50 | 50 | |
51 | - ->addColumn('amount', function ($query) { |
|
51 | + ->addColumn('amount', function($query) { |
|
52 | 52 | return '<input type="text" class="change-amount-product-attribute" value="'.$query->amount.'" data-url="/admin/product/'.$query->product_id.'/product-combination/change-amount-attribute/'.$query->id.'">'; |
53 | 53 | }) |
54 | 54 | |
55 | - ->addColumn('price', function ($query) { |
|
55 | + ->addColumn('price', function($query) { |
|
56 | 56 | $result = 0; |
57 | 57 | if ($query->price) { |
58 | 58 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | 'amount' => $query->amount |
102 | 102 | ); |
103 | 103 | |
104 | - $result = '€ '.$output['orginal_price_ex_tax_number_format'].' / € '.$output['orginal_price_inc_tax_number_format']; |
|
104 | + $result = '€ '.$output['orginal_price_ex_tax_number_format'].' / € '.$output['orginal_price_inc_tax_number_format']; |
|
105 | 105 | |
106 | 106 | |
107 | 107 | if ($query->discount_value) { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | return $result; |
113 | 113 | }) |
114 | 114 | |
115 | - ->addColumn('combinations', function ($query) use ($productId) { |
|
115 | + ->addColumn('combinations', function($query) use ($productId) { |
|
116 | 116 | $items = array(); |
117 | 117 | foreach ($query->combinations as $row) { |
118 | 118 | $items[] = $row->attribute->attributeGroup->title.': '.$row->attribute->value; |
@@ -157,8 +157,8 @@ discard block |
||
157 | 157 | |
158 | 158 | public function store($productId) |
159 | 159 | { |
160 | - $result = ProductCombinationService::create($this->request->all(), $productId); |
|
161 | - if($result) { |
|
160 | + $result = ProductCombinationService::create($this->request->all(), $productId); |
|
161 | + if ($result) { |
|
162 | 162 | return ProductCombinationService::notificationRedirect(array('product-combination.index', $productId), $result, 'The product extra fields are updated.'); |
163 | 163 | |
164 | 164 | } |
@@ -195,14 +195,14 @@ discard block |
||
195 | 195 | public function update($productId, $id) |
196 | 196 | { |
197 | 197 | |
198 | - $result = ProductCombinationService::updateById($this->request->all(), $productId, $id); |
|
198 | + $result = ProductCombinationService::updateById($this->request->all(), $productId, $id); |
|
199 | 199 | return ProductCombinationService::notificationRedirect(array('product-combination.index', $productId), $result, 'The product combinations are updated.'); |
200 | 200 | |
201 | 201 | } |
202 | 202 | |
203 | 203 | public function destroy($productId, $id) |
204 | 204 | { |
205 | - $result = ProductCombinationService::destroy($id); |
|
205 | + $result = ProductCombinationService::destroy($id); |
|
206 | 206 | |
207 | 207 | if ($result) { |
208 | 208 | Notification::success('The product combination is deleted.'); |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | if ($request->wantsJson()) { |
31 | 31 | |
32 | 32 | $query = AttributeService::getModel() |
33 | - ->select(['id','value']) |
|
33 | + ->select(['id', 'value']) |
|
34 | 34 | ->where('attribute_group_id', '=', $attributeGroupId); |
35 | 35 | |
36 | 36 | $datatables = Datatables::of($query) |
37 | - ->addColumn('action', function ($query) use ($attributeGroupId) { |
|
37 | + ->addColumn('action', function($query) use ($attributeGroupId) { |
|
38 | 38 | $deleteLink = Form::deleteajax(url()->route('attribute.destroy', array('attributeGroupId' => $attributeGroupId, 'id' => $query->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
39 | 39 | $links = ' <a href="'.url()->route('attribute.edit', array('attributeGroupId' => $attributeGroupId, 'id' => $query->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a>'.$deleteLink; |
40 | 40 | return $links; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function store(Request $request, $attributeGroupId) |
68 | 68 | { |
69 | - $result = AttributeService::create($request->all(), $attributeGroupId); |
|
69 | + $result = AttributeService::create($request->all(), $attributeGroupId); |
|
70 | 70 | return AttributeService::notificationRedirect(array('attribute.index', $attributeGroupId), $result, 'The attribute was inserted.'); |
71 | 71 | } |
72 | 72 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public function update(Request $request, $attributeGroupId, $attributeId) |
92 | 92 | { |
93 | - $result = AttributeService::updateById($request->all(), $attributeGroupId, $attributeId); |
|
93 | + $result = AttributeService::updateById($request->all(), $attributeGroupId, $attributeId); |
|
94 | 94 | return AttributeService::notificationRedirect(array('attribute.index', $attributeGroupId), $result, 'The attribute was updated.'); |
95 | 95 | } |
96 | 96 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function destroy($attributeGroupId, $attributeId) |
104 | 104 | { |
105 | - $result = AttributeService::destroy($attributeId); |
|
105 | + $result = AttributeService::destroy($attributeId); |
|
106 | 106 | |
107 | 107 | if ($result) { |
108 | 108 | Notification::success('Atrribute was deleted.'); |
@@ -10,7 +10,7 @@ |
||
10 | 10 | { |
11 | 11 | public function index() |
12 | 12 | { |
13 | - $shop = auth('hideyobackend')->user()->shop; |
|
13 | + $shop = auth('hideyobackend')->user()->shop; |
|
14 | 14 | |
15 | 15 | return view('backend.dashboard.stats')->with( |
16 | 16 | array( |