@@ -21,8 +21,8 @@ |
||
21 | 21 | |
22 | 22 | $query = $this->error->getModel(); |
23 | 23 | |
24 | - $datatables = \DataTables::of($query)->addColumn('action', function ($query) { |
|
25 | - $deleteLink = \Form::deleteajax('/admin/general-setting/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
24 | + $datatables = \DataTables::of($query)->addColumn('action', function($query) { |
|
25 | + $deleteLink = \Form::deleteajax('/admin/general-setting/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
26 | 26 | $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; |
27 | 27 | |
28 | 28 | return $links; |
@@ -33,12 +33,12 @@ discard block |
||
33 | 33 | ->with(array('couponGroup')); |
34 | 34 | |
35 | 35 | $datatables = DataTables::of($query) |
36 | - ->filterColumn('title', function ($query, $keyword) { |
|
36 | + ->filterColumn('title', function($query, $keyword) { |
|
37 | 37 | $query->whereRaw("coupon.title like ?", ["%{$keyword}%"]); |
38 | 38 | }) |
39 | 39 | |
40 | - ->addColumn('action', function ($query) { |
|
41 | - $deleteLink = Form::deleteajax('/admin/coupon/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
40 | + ->addColumn('action', function($query) { |
|
41 | + $deleteLink = Form::deleteajax('/admin/coupon/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
42 | 42 | $links = '<a href="/admin/coupon/'.$query->id.'/edit" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
43 | 43 | |
44 | 44 | return $links; |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | |
64 | 64 | public function store(Request $request) |
65 | 65 | { |
66 | - $result = CouponService::create($request->all()); |
|
66 | + $result = CouponService::create($request->all()); |
|
67 | 67 | return CouponService::notificationRedirect('coupon.index', $result, 'The coupon was inserted.'); |
68 | 68 | } |
69 | 69 | |
@@ -83,13 +83,13 @@ discard block |
||
83 | 83 | |
84 | 84 | public function update(Request $request, $couponId) |
85 | 85 | { |
86 | - $result = CouponService::updateById($request->all(), $couponId); |
|
86 | + $result = CouponService::updateById($request->all(), $couponId); |
|
87 | 87 | return CouponService::notificationRedirect('coupon.index', $result, 'The coupon was updated.'); |
88 | 88 | } |
89 | 89 | |
90 | 90 | public function destroy($couponId) |
91 | 91 | { |
92 | - $result = CouponService::destroy($couponId); |
|
92 | + $result = CouponService::destroy($couponId); |
|
93 | 93 | |
94 | 94 | if ($result) { |
95 | 95 | Notification::success('The coupon was deleted.'); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | $datatables = \DataTables::of($query) |
27 | 27 | |
28 | - ->addColumn('title', function ($query) { |
|
28 | + ->addColumn('title', function($query) { |
|
29 | 29 | |
30 | 30 | if ($query->color) { |
31 | 31 | return '<span style="background-color:'.$query->color.'; padding: 10px; line-height:30px; text-align:center; color:white;">'.$query->title.'</span>'; |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | return $query->title; |
35 | 35 | }) |
36 | 36 | |
37 | - ->addColumn('action', function ($query) { |
|
38 | - $deleteLink = Form::deleteajax('/admin/order-status/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
37 | + ->addColumn('action', function($query) { |
|
38 | + $deleteLink = Form::deleteajax('/admin/order-status/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
39 | 39 | $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; |
40 | 40 | |
41 | 41 | return $links; |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | public function store(Request $request) |
56 | 56 | { |
57 | - $result = OrderStatusService::create($request->all()); |
|
57 | + $result = OrderStatusService::create($request->all()); |
|
58 | 58 | return OrderStatusService::notificationRedirect('order-status.index', $result, 'The order status was inserted.'); |
59 | 59 | } |
60 | 60 | |
@@ -75,13 +75,13 @@ discard block |
||
75 | 75 | |
76 | 76 | public function update(Request $request, $orderStatusId) |
77 | 77 | { |
78 | - $result = OrderStatusService::updateById($request->all(), $orderStatusId); |
|
78 | + $result = OrderStatusService::updateById($request->all(), $orderStatusId); |
|
79 | 79 | return OrderStatusService::notificationRedirect('order-status.index', $result, 'The order status was updated.'); |
80 | 80 | } |
81 | 81 | |
82 | 82 | public function destroy($orderStatusId) |
83 | 83 | { |
84 | - $result = OrderStatusService::destroy($orderStatusId); |
|
84 | + $result = OrderStatusService::destroy($orderStatusId); |
|
85 | 85 | |
86 | 86 | if ($result) { |
87 | 87 | Notification::success('The order status was deleted.'); |
@@ -25,13 +25,13 @@ |
||
25 | 25 | |
26 | 26 | $datatables = DataTables::of($query) |
27 | 27 | |
28 | - ->addColumn('action', function ($query) { |
|
28 | + ->addColumn('action', function($query) { |
|
29 | 29 | $deleteLink = Form::deleteajax(url()->route('shop.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
30 | 30 | $links = '<a href="'.url()->route('shop.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
31 | 31 | return $links; |
32 | 32 | }) |
33 | 33 | |
34 | - ->addColumn('image', function ($query) { |
|
34 | + ->addColumn('image', function($query) { |
|
35 | 35 | if ($query->logo_file_name) { |
36 | 36 | return '<img src="http://shop.brulo.nl/files/'.$query->id.'/logo/'.$query->logo_file_name.'" />'; |
37 | 37 | } |
@@ -24,8 +24,8 @@ discard block |
||
24 | 24 | $query = OrderStatusEmailTemplateService::getModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id); |
25 | 25 | |
26 | 26 | $datatables = DataTables::of($query) |
27 | - ->addColumn('action', function ($query) { |
|
28 | - $deleteLink = Form::deleteajax('/admin/order-status-email-template/'. $query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
27 | + ->addColumn('action', function($query) { |
|
28 | + $deleteLink = Form::deleteajax('/admin/order-status-email-template/'.$query->id, 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
|
29 | 29 | $links = '<a href="/admin/order-status-email-template/'.$query->id.'/edit" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> '.$deleteLink; |
30 | 30 | |
31 | 31 | return $links; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | public function store(Request $request) |
46 | 46 | { |
47 | - $result = OrderStatusEmailTemplateService::create($request->all()); |
|
47 | + $result = OrderStatusEmailTemplateService::create($request->all()); |
|
48 | 48 | return OrderStatusEmailTemplateService::notificationRedirect('order-status-email-template.index', $result, 'The template was inserted.'); |
49 | 49 | } |
50 | 50 | |
@@ -60,13 +60,13 @@ discard block |
||
60 | 60 | |
61 | 61 | public function update(Request $request, $templateId) |
62 | 62 | { |
63 | - $result = OrderStatusEmailTemplateService::updateById($request->all(), $templateId); |
|
63 | + $result = OrderStatusEmailTemplateService::updateById($request->all(), $templateId); |
|
64 | 64 | return OrderStatusEmailTemplateService::notificationRedirect('order-status-email-template.index', $result, 'The template was updated.'); |
65 | 65 | } |
66 | 66 | |
67 | 67 | public function destroy($templateId) |
68 | 68 | { |
69 | - $result = OrderStatusEmailTemplateService::destroy($templateId); |
|
69 | + $result = OrderStatusEmailTemplateService::destroy($templateId); |
|
70 | 70 | |
71 | 71 | if ($result) { |
72 | 72 | Notification::success('template was deleted.'); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | $query = NewsService::getGroupModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id); |
24 | 24 | |
25 | 25 | $datatables = \DataTables::of($query) |
26 | - ->addColumn('action', function ($query) { |
|
26 | + ->addColumn('action', function($query) { |
|
27 | 27 | $deleteLink = \Form::deleteajax(url()->route('news-group.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
28 | 28 | $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; |
29 | 29 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | public function store(Request $request) |
46 | 46 | { |
47 | - $result = NewsService::createGroup($request->all()); |
|
47 | + $result = NewsService::createGroup($request->all()); |
|
48 | 48 | return NewsService::notificationRedirect('news-group.index', $result, 'The news group was inserted.'); |
49 | 49 | } |
50 | 50 | |
@@ -55,13 +55,13 @@ discard block |
||
55 | 55 | |
56 | 56 | public function update(Request $request, $newsGroupId) |
57 | 57 | { |
58 | - $result = NewsService::updateGroupById($request->all(), $newsGroupId); |
|
58 | + $result = NewsService::updateGroupById($request->all(), $newsGroupId); |
|
59 | 59 | return NewsService::notificationRedirect('news-group.index', $result, 'The news group was updated.'); |
60 | 60 | } |
61 | 61 | |
62 | 62 | public function destroy($newsGroupId) |
63 | 63 | { |
64 | - $result = NewsService::destroyGroup($newsGroupId); |
|
64 | + $result = NewsService::destroyGroup($newsGroupId); |
|
65 | 65 | |
66 | 66 | if ($result) { |
67 | 67 | Notification::success('The news group was deleted.'); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | $query = ExtraFieldService::getValueModel()->where('extra_field_id', '=', $extraFieldId); |
25 | 25 | |
26 | - $datatables = DataTables::of($query)->addColumn('action', function ($query) use ($extraFieldId) { |
|
26 | + $datatables = DataTables::of($query)->addColumn('action', function($query) use ($extraFieldId) { |
|
27 | 27 | $deleteLink = Form::deleteajax(url()->route('extra-field.values.destroy', array('ExtraFieldId' => $extraFieldId, 'id' => $query->id)), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
28 | 28 | $links = ' <a href="'.url()->route('extra-field.values.edit', array('ExtraFieldId' => $extraFieldId, 'id' => $query->id)).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> |
29 | 29 | '.$deleteLink; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | public function store(Request $request, $extraFieldId) |
46 | 46 | { |
47 | - $result = ExtraFieldService::createValue($request->all(), $extraFieldId); |
|
47 | + $result = ExtraFieldService::createValue($request->all(), $extraFieldId); |
|
48 | 48 | return ExtraFieldService::notificationRedirect(array('extra-field.values.index', $extraFieldId), $result, 'The extra field was inserted.'); |
49 | 49 | } |
50 | 50 | |
@@ -55,13 +55,13 @@ discard block |
||
55 | 55 | |
56 | 56 | public function update(Request $request, $extraFieldId, $id) |
57 | 57 | { |
58 | - $result = ExtraFieldService::updateValueById($request->all(), $extraFieldId, $id); |
|
58 | + $result = ExtraFieldService::updateValueById($request->all(), $extraFieldId, $id); |
|
59 | 59 | return ExtraFieldService::notificationRedirect(array('extra-field.values.index', $extraFieldId), $result, 'The extra field was updated.'); |
60 | 60 | } |
61 | 61 | |
62 | 62 | public function destroy($extraFieldId, $id) |
63 | 63 | { |
64 | - $result = ExtraFieldService::destroyValue($id); |
|
64 | + $result = ExtraFieldService::destroyValue($id); |
|
65 | 65 | |
66 | 66 | if ($result) { |
67 | 67 | Notification::success('Extra field was deleted.'); |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | $datatables = DataTables::of($query) |
30 | 30 | |
31 | - ->addColumn('category', function ($query) { |
|
31 | + ->addColumn('category', function($query) { |
|
32 | 32 | if ($query->categories) { |
33 | 33 | $output = array(); |
34 | 34 | foreach ($query->categories as $categorie) { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | } |
40 | 40 | }) |
41 | 41 | |
42 | - ->addColumn('action', function ($query) { |
|
42 | + ->addColumn('action', function($query) { |
|
43 | 43 | $deleteLink = Form::deleteajax(url()->route('extra-field.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-default btn-sm btn-danger')); |
44 | 44 | $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> |
45 | 45 | <a href="'.url()->route('extra-field.edit', $query->id).'" class="btn btn-default btn-sm btn-success"><i class="entypo-pencil"></i>Edit</a> |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | public function store(Request $request) |
63 | 63 | { |
64 | - $result = ExtraFieldService::create($request->all()); |
|
64 | + $result = ExtraFieldService::create($request->all()); |
|
65 | 65 | return ExtraFieldService::notificationRedirect('extra-field.index', $result, 'The extra field was inserted.'); |
66 | 66 | } |
67 | 67 | |
@@ -72,13 +72,13 @@ discard block |
||
72 | 72 | |
73 | 73 | public function update(Request $request, $id) |
74 | 74 | { |
75 | - $result = ExtraFieldService::updateById($request->all(), $id); |
|
75 | + $result = ExtraFieldService::updateById($request->all(), $id); |
|
76 | 76 | return ExtraFieldService::notificationRedirect('extra-field.index', $result, 'The extra field was updated.'); |
77 | 77 | } |
78 | 78 | |
79 | 79 | public function destroy($id) |
80 | 80 | { |
81 | - $result = ExtraFieldService::destroy($id); |
|
81 | + $result = ExtraFieldService::destroy($id); |
|
82 | 82 | |
83 | 83 | if ($result) { |
84 | 84 | Notification::success('Extra field was deleted.'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | if ($request->wantsJson()) { |
15 | 15 | $query = TaxRateService::getModel()->where('shop_id', '=', auth('hideyobackend')->user()->selected_shop_id); |
16 | - $datatables = DataTables::of($query)->addColumn('action', function ($query) { |
|
16 | + $datatables = DataTables::of($query)->addColumn('action', function($query) { |
|
17 | 17 | $deleteLink = Form::deleteajax(url()->route('tax-rate.destroy', $query->id), 'Delete', '', array('class'=>'btn btn-sm btn-danger'), $query->title); |
18 | 18 | $links = '<a href="'.url()->route('tax-rate.edit', $query->id).'" class="btn btn-sm btn-success"><i class="fi-pencil"></i>Edit</a> '.$deleteLink; |
19 | 19 | return $links; |