@@ -25,13 +25,13 @@ discard block |
||
25 | 25 | $query = ProductRelatedProductService::getModel()->where('product_id', '=', $productId); |
26 | 26 | |
27 | 27 | $datatables = \DataTables::of($query) |
28 | - ->addColumn('related', function ($query) use ($productId) { |
|
28 | + ->addColumn('related', function($query) use ($productId) { |
|
29 | 29 | return $query->RelatedProduct->title; |
30 | 30 | }) |
31 | - ->addColumn('product', function ($query) use ($productId) { |
|
31 | + ->addColumn('product', function($query) use ($productId) { |
|
32 | 32 | return $query->Product->title; |
33 | 33 | }) |
34 | - ->addColumn('action', function ($query) use ($productId) { |
|
34 | + ->addColumn('action', function($query) use ($productId) { |
|
35 | 35 | $deleteLink = \Form::deleteajax(url()->route('product.related-product.destroy', array('productId' => $productId, 'id' => $query->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
36 | 36 | |
37 | 37 | return $deleteLink; |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | |
53 | 53 | public function store(Request $request, $productId) |
54 | 54 | { |
55 | - $result = ProductRelatedProductService::create($request->all(), $productId); |
|
55 | + $result = ProductRelatedProductService::create($request->all(), $productId); |
|
56 | 56 | return redirect()->route('product.related-product.index', $productId); |
57 | 57 | } |
58 | 58 | |
59 | 59 | public function destroy($productId, $productRelatedProductId) |
60 | 60 | { |
61 | - $result = ProductRelatedProductService::destroy($productRelatedProductId); |
|
61 | + $result = ProductRelatedProductService::destroy($productRelatedProductId); |
|
62 | 62 | |
63 | 63 | if ($result) { |
64 | 64 | Notification::success('The related product is deleted.'); |
@@ -34,10 +34,10 @@ discard block |
||
34 | 34 | ->where('faq_item.shop_id', '=', auth('hideyobackend')->user()->selected_shop_id); |
35 | 35 | |
36 | 36 | $datatables = DataTables::of($query) |
37 | - ->addColumn('faqitemgroup', function ($query) { |
|
37 | + ->addColumn('faqitemgroup', function($query) { |
|
38 | 38 | return $query->grouptitle; |
39 | 39 | }) |
40 | - ->addColumn('action', function ($query) { |
|
40 | + ->addColumn('action', function($query) { |
|
41 | 41 | $deleteLink = Form::deleteajax(url()->route('faq.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
42 | 42 | $links = '<a href="'.url()->route('faq.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
43 | 43 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | public function store(Request $request) |
60 | 60 | { |
61 | - $result = FaqService::create($request->all()); |
|
61 | + $result = FaqService::create($request->all()); |
|
62 | 62 | return FaqService::notificationRedirect('faq.index', $result, 'FaqItem was inserted.'); |
63 | 63 | } |
64 | 64 | |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | |
71 | 71 | public function update(Request $request, $faqId) |
72 | 72 | { |
73 | - $result = FaqService::updateById($request->all(), $faqId); |
|
73 | + $result = FaqService::updateById($request->all(), $faqId); |
|
74 | 74 | return FaqService::notificationRedirect('faq.index', $result, 'FaqItem was updated.'); |
75 | 75 | } |
76 | 76 | |
77 | 77 | public function destroy($faqItemId) |
78 | 78 | { |
79 | - $result = FaqService::destroy($faqItemId); |
|
79 | + $result = FaqService::destroy($faqItemId); |
|
80 | 80 | |
81 | 81 | if ($result) { |
82 | 82 | Notification::success('The faq was deleted.'); |
@@ -27,22 +27,22 @@ discard block |
||
27 | 27 | |
28 | 28 | $datatables = DataTables::of($query) |
29 | 29 | |
30 | - ->addColumn('orderconfirmed', function ($query) { |
|
30 | + ->addColumn('orderconfirmed', function($query) { |
|
31 | 31 | if ($query->orderConfirmedOrderStatus) { |
32 | 32 | return $query->orderConfirmedOrderStatus->title; |
33 | 33 | } |
34 | 34 | }) |
35 | - ->addColumn('paymentcompleted', function ($query) { |
|
35 | + ->addColumn('paymentcompleted', function($query) { |
|
36 | 36 | if ($query->orderPaymentCompletedOrderStatus) { |
37 | 37 | return $query->orderPaymentCompletedOrderStatus->title; |
38 | 38 | } |
39 | 39 | }) |
40 | - ->addColumn('paymentfailed', function ($query) { |
|
40 | + ->addColumn('paymentfailed', function($query) { |
|
41 | 41 | if ($query->orderPaymentFailedOrderStatus) { |
42 | 42 | return $query->orderPaymentFailedOrderStatus->title; |
43 | 43 | } |
44 | 44 | }) |
45 | - ->addColumn('action', function ($query) { |
|
45 | + ->addColumn('action', function($query) { |
|
46 | 46 | $deleteLink = Form::deleteajax(url()->route('payment-method.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-sm btn-danger')); |
47 | 47 | $links = '<a href="'.url()->route('payment-method.edit', $query->id).'" class="btn btn-sm btn-success"><i class="fi-pencil"></i>Edit</a> '.$deleteLink; |
48 | 48 | return $links; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | public function store(Request $request) |
69 | 69 | { |
70 | - $result = PaymentMethodService::create($request->all()); |
|
70 | + $result = PaymentMethodService::create($request->all()); |
|
71 | 71 | return PaymentMethodService::notificationRedirect('payment-method.index', $result, 'The payment method was inserted.'); |
72 | 72 | } |
73 | 73 | |
@@ -84,13 +84,13 @@ discard block |
||
84 | 84 | |
85 | 85 | public function update(Request $request, $paymentMethodId) |
86 | 86 | { |
87 | - $result = PaymentMethodService::updateById($request->all(), $paymentMethodId); |
|
87 | + $result = PaymentMethodService::updateById($request->all(), $paymentMethodId); |
|
88 | 88 | return PaymentMethodService::notificationRedirect('payment-method.index', $result, 'The payment method was updated.'); |
89 | 89 | } |
90 | 90 | |
91 | 91 | public function destroy($paymentMethodId) |
92 | 92 | { |
93 | - $result = PaymentMethodService::destroy($paymentMethodId); |
|
93 | + $result = PaymentMethodService::destroy($paymentMethodId); |
|
94 | 94 | |
95 | 95 | if ($result) { |
96 | 96 | Notification::success('The payment method was deleted.'); |
@@ -35,7 +35,7 @@ |
||
35 | 35 | Notification::error($validator->errors()->all()); |
36 | 36 | } |
37 | 37 | |
38 | - Mail::send('frontend.email.contact', ['data' => $input], function ($m) use ($input) { |
|
38 | + Mail::send('frontend.email.contact', ['data' => $input], function($m) use ($input) { |
|
39 | 39 | $m->from('[email protected]', 'Dutchbridge'); |
40 | 40 | $m->replyTo($input['email'], $input['name']); |
41 | 41 | $m->to('[email protected]')->subject(': thnx for your contact!'); |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | public function getItem(Request $request, $newsGroupSlug, $slug) |
11 | 11 | { |
12 | 12 | $news = NewsService::selectOneBySlug(config()->get('app.shop_id'), $slug); |
13 | - $newsGroups = NewsService::selectAllActiveGroupsByShopId(config()->get('app.shop_id')); |
|
13 | + $newsGroups = NewsService::selectAllActiveGroupsByShopId(config()->get('app.shop_id')); |
|
14 | 14 | |
15 | 15 | if ($news) { |
16 | 16 | if ($news->slug != $slug or $news->newsGroup->slug != $newsGroupSlug) { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $page = $request->get('page', 1); |
29 | 29 | $news = NewsService::selectByGroupAndByShopIdAndPaginate(config()->get('app.shop_id'), $newsGroupSlug, 25); |
30 | 30 | $newsGroup = NewsService::selectOneGroupByShopIdAndSlug(config()->get('app.shop_id'), $newsGroupSlug); |
31 | - $newsGroups = NewsService::selectAllActiveGroupsByShopId(config()->get('app.shop_id')); |
|
31 | + $newsGroups = NewsService::selectAllActiveGroupsByShopId(config()->get('app.shop_id')); |
|
32 | 32 | |
33 | 33 | if ($newsGroup) { |
34 | 34 | return view('frontend.news.group')->with(array('selectedPage' => $page, 'news' => $news, 'newsGroups' => $newsGroups, 'newsGroup' => $newsGroup)); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | { |
42 | 42 | $page = $request->get('page', 1); |
43 | 43 | $news = NewsService::selectAllByShopIdAndPaginate(config()->get('app.shop_id'), 25); |
44 | - $newsGroups = NewsService::selectAllActiveGroupsByShopId(config()->get('app.shop_id')); |
|
44 | + $newsGroups = NewsService::selectAllActiveGroupsByShopId(config()->get('app.shop_id')); |
|
45 | 45 | if ($news) { |
46 | 46 | return view('frontend.news.index')->with(array('selectedPage' => $page, 'news' => $news, 'newsGroups' => $newsGroups)); |
47 | 47 | } |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | |
27 | 27 | $paymentMethodsList = Cart::getConditionsByType('sending_method')->first()->getAttributes()['data']['related_payment_methods_list']; |
28 | 28 | |
29 | - if(!Cart::getConditionsByType('sending_method')->count()) { |
|
29 | + if (!Cart::getConditionsByType('sending_method')->count()) { |
|
30 | 30 | Notification::error('Selecteer een verzendwijze'); |
31 | 31 | return redirect()->to('cart'); |
32 | 32 | } |
33 | 33 | |
34 | - if(!Cart::getConditionsByType('payment_method')->count()) { |
|
34 | + if (!Cart::getConditionsByType('payment_method')->count()) { |
|
35 | 35 | Notification::error('Selecteer een betaalwijze'); |
36 | 36 | return redirect()->to('cart'); |
37 | 37 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | 'paymentMethodsList' => $paymentMethodsList)); |
51 | 51 | } |
52 | 52 | |
53 | - return view('frontend.checkout.login')->with(array( 'sendingMethodsList' => $sendingMethodsList, 'paymentMethodsList' => $paymentMethodsList)); |
|
53 | + return view('frontend.checkout.login')->with(array('sendingMethodsList' => $sendingMethodsList, 'paymentMethodsList' => $paymentMethodsList)); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | $user = auth('web')->user(); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $userdata = $request->all(); |
106 | 106 | |
107 | 107 | $rules = array( |
108 | - 'email' => 'required|email', // required and must be unique in the ducks table |
|
108 | + 'email' => 'required|email', // required and must be unique in the ducks table |
|
109 | 109 | 'password' => 'required', |
110 | 110 | 'firstname' => 'required', |
111 | 111 | 'lastname' => 'required', |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | $data = $register; |
153 | 153 | $data['shop'] = app('shop'); |
154 | 154 | |
155 | - Mail::send('frontend.email.register-mail', array('password' => $userdata['password'], 'user' => $data->toArray(), 'billAddress' => $data->clientBillAddress->toArray()), function ($message) use ($data) { |
|
155 | + Mail::send('frontend.email.register-mail', array('password' => $userdata['password'], 'user' => $data->toArray(), 'billAddress' => $data->clientBillAddress->toArray()), function($message) use ($data) { |
|
156 | 156 | |
157 | 157 | $message->to($data['email'])->from($data['shop']->email, $data['shop']->title)->subject('Je bent geregistreerd.'); |
158 | 158 | }); |
@@ -216,15 +216,15 @@ discard block |
||
216 | 216 | $data['user_id'] = $noAccountUser['client_id']; |
217 | 217 | } |
218 | 218 | |
219 | - if(Cart::getConditionsByType('sending_method')->count()) { |
|
219 | + if (Cart::getConditionsByType('sending_method')->count()) { |
|
220 | 220 | $data['sending_method'] = Cart::getConditionsByType('sending_method'); |
221 | 221 | } |
222 | 222 | |
223 | - if(Cart::getConditionsByType('sending_method_country_price')->count()) { |
|
223 | + if (Cart::getConditionsByType('sending_method_country_price')->count()) { |
|
224 | 224 | $data['sending_method_country_price'] = Cart::getConditionsByType('sending_method_country_price'); |
225 | 225 | } |
226 | 226 | |
227 | - if(Cart::getConditionsByType('payment_method')->count()) { |
|
227 | + if (Cart::getConditionsByType('payment_method')->count()) { |
|
228 | 228 | $data['payment_method'] = Cart::getConditionsByType('payment_method'); |
229 | 229 | } |
230 | 230 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | return redirect()->to('cart'); |
27 | 27 | } |
28 | 28 | |
29 | - if($sendingMethodsList->count() AND !app('cart')->getConditionsByType('sending_method')->count()) { |
|
29 | + if ($sendingMethodsList->count() AND !app('cart')->getConditionsByType('sending_method')->count()) { |
|
30 | 30 | self::updateSendingMethod($sendingMethodsList->first()->id); |
31 | 31 | } |
32 | 32 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $request->get('amount') |
66 | 66 | ); |
67 | 67 | |
68 | - if($result){ |
|
68 | + if ($result) { |
|
69 | 69 | return response()->json(array( |
70 | 70 | 'result' => true, |
71 | 71 | 'producttotal' => app('cart')->getContent()->count(), |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | $product = app('cart')->get($productId); |
97 | 97 | $amountNa = false; |
98 | 98 | |
99 | - if($product->quantity < $amount) { |
|
99 | + if ($product->quantity < $amount) { |
|
100 | 100 | $amountNa = view('frontend.cart.amount-na')->with(array('product' => $product))->render(); |
101 | 101 | } |
102 | 102 |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | if ($request->wantsJson()) { |
23 | 23 | $query = ProductTagGroupService::getModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id); |
24 | 24 | |
25 | - $datatables = \DataTables::of($query)->addColumn('action', function ($query) { |
|
25 | + $datatables = \DataTables::of($query)->addColumn('action', function($query) { |
|
26 | 26 | $deleteLink = \Form::deleteajax(url()->route('product-tag-group.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
27 | 27 | $links = '<a href="'.url()->route('product-tag-group.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
28 | 28 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | public function store(Request $request) |
46 | 46 | { |
47 | - $result = ProductTagGroupService::create($request->all()); |
|
47 | + $result = ProductTagGroupService::create($request->all()); |
|
48 | 48 | return ProductTagGroupService::notificationRedirect('product-tag-group.index', $result, 'The product group tag was inserted.'); |
49 | 49 | } |
50 | 50 | |
@@ -60,13 +60,13 @@ discard block |
||
60 | 60 | |
61 | 61 | public function update(Request $request, $productTagGroupId) |
62 | 62 | { |
63 | - $result = ProductTagGroupService::updateById($request->all(), $productTagGroupId); |
|
63 | + $result = ProductTagGroupService::updateById($request->all(), $productTagGroupId); |
|
64 | 64 | return ProductTagGroupService::notificationRedirect('product-tag-group.index', $result, 'The product group tag was updated.'); |
65 | 65 | } |
66 | 66 | |
67 | 67 | public function destroy($productTagGroupId) |
68 | 68 | { |
69 | - $result = ProductTagGroupService::destroy($productTagGroupId); |
|
69 | + $result = ProductTagGroupService::destroy($productTagGroupId); |
|
70 | 70 | |
71 | 71 | if ($result) { |
72 | 72 | Notification::success('The product group tag was deleted.'); |
@@ -24,10 +24,10 @@ discard block |
||
24 | 24 | $image = BrandService::getModelImage()->where('brand_id', '=', $brandId); |
25 | 25 | |
26 | 26 | $datatables = DataTables::of($image) |
27 | - ->addColumn('thumb', function ($image) { |
|
27 | + ->addColumn('thumb', function($image) { |
|
28 | 28 | return '<img src="'.config('hideyo.public_path').'/brand/100x100/'.$image->brand_id.'/'.$image->file.'" />'; |
29 | 29 | }) |
30 | - ->addColumn('action', function ($image) use ($brandId) { |
|
30 | + ->addColumn('action', function($image) use ($brandId) { |
|
31 | 31 | $deleteLink = Form::deleteajax(url()->route('brand.images.destroy', array('brandId' => $brandId, 'id' => $image->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
32 | 32 | $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; |
33 | 33 | return $links; |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | return $datatables->make(true); |
37 | 37 | } |
38 | 38 | |
39 | - return view('backend.brand_image.index')->with(array( 'brand' => $brand)); |
|
39 | + return view('backend.brand_image.index')->with(array('brand' => $brand)); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | public function create($brandId) |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | public function store(Request $request, $brandId) |
49 | 49 | { |
50 | - $result = BrandService::createImage($request->all(), $brandId); |
|
50 | + $result = BrandService::createImage($request->all(), $brandId); |
|
51 | 51 | return BrandService::notificationRedirect(array('brand.images.index', $brandId), $result, 'The brand image was inserted.'); |
52 | 52 | } |
53 | 53 | |
@@ -59,13 +59,13 @@ discard block |
||
59 | 59 | |
60 | 60 | public function update(Request $request, $brandId, $brandImageId) |
61 | 61 | { |
62 | - $result = BrandService::updateImageById($request->all(), $brandId, $brandImageId); |
|
62 | + $result = BrandService::updateImageById($request->all(), $brandId, $brandImageId); |
|
63 | 63 | return BrandService::notificationRedirect(array('brand.images.index', $brandId), $result, 'The brand image was updated.'); |
64 | 64 | } |
65 | 65 | |
66 | 66 | public function destroy($brandId, $brandImageId) |
67 | 67 | { |
68 | - $result = BrandService::destroyImage($brandImageId); |
|
68 | + $result = BrandService::destroyImage($brandImageId); |
|
69 | 69 | |
70 | 70 | if ($result) { |
71 | 71 | Notification::success('The file was deleted.'); |