@@ -24,10 +24,10 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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.'); |
@@ -23,15 +23,15 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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.'); |