@@ -48,12 +48,12 @@ discard block |
||
48 | 48 | |
49 | 49 | ]; |
50 | 50 | |
51 | - if( $doctor->city_id == null || |
|
51 | + if ($doctor->city_id == null || |
|
52 | 52 | $doctor->gender == null || |
53 | 53 | $doctor->biography == null || |
54 | 54 | $doctor->profile_picture == 'user-default.jpg') { |
55 | 55 | |
56 | - $data['warning'] = 'Sepertinya anda belum melengkapi data diri anda, segera lengkapi data diri anda.'; |
|
56 | + $data[ 'warning' ] = 'Sepertinya anda belum melengkapi data diri anda, segera lengkapi data diri anda.'; |
|
57 | 57 | } |
58 | 58 | return view('pages.dashboard')->with('data', $data); |
59 | 59 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | public function profile($id) |
68 | 68 | { |
69 | 69 | $doctor = $this->currentUser(); |
70 | - if($doctor->id == $id) { |
|
70 | + if ($doctor->id == $id) { |
|
71 | 71 | $data = [ |
72 | 72 | 'doctor' => $doctor |
73 | 73 | ]; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | public function edit($id) |
87 | 87 | { |
88 | 88 | $doctor = $this->currentUser(); |
89 | - if($doctor->id == $id) { |
|
89 | + if ($doctor->id == $id) { |
|
90 | 90 | $specialization = DoctorSpecialization::pluck('name', 'id'); |
91 | 91 | $cities = City::pluck('name', 'id'); |
92 | 92 | |
@@ -124,9 +124,9 @@ discard block |
||
124 | 124 | $doctor = $this->currentUser(); |
125 | 125 | $img = null; |
126 | 126 | |
127 | - if($request->hasFile('profile_picture')) { |
|
127 | + if ($request->hasFile('profile_picture')) { |
|
128 | 128 | |
129 | - if( $doctor->profile_picture != "user-default.jpg") { |
|
129 | + if ($doctor->profile_picture != "user-default.jpg") { |
|
130 | 130 | Storage::delete('public/user_images/'.$doctor->profile_picture); |
131 | 131 | } |
132 | 132 | |
@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | $doctor->gender = $request->input('gender'); |
149 | 149 | $doctor->specialization_id = $request->input('specialization_id'); |
150 | 150 | $doctor->biography = $request->input('biography'); |
151 | - if($request->hasFile('profile_picture')) { |
|
151 | + if ($request->hasFile('profile_picture')) { |
|
152 | 152 | $doctor->profile_picture = $img; |
153 | 153 | } |
154 | 154 | |
155 | - if($doctor->save()) { |
|
155 | + if ($doctor->save()) { |
|
156 | 156 | return redirect(route('doctor.profile', $doctor->id))->with('success', 'Profil berhasil diperbarui !'); |
157 | 157 | } |
158 | 158 | |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | public function editPass($id) |
169 | 169 | { |
170 | 170 | $doctor = $this->currentUser(); |
171 | - if($doctor->id == $id) { |
|
171 | + if ($doctor->id == $id) { |
|
172 | 172 | $data = [ |
173 | 173 | 'doctor' => $doctor |
174 | 174 | ]; |
@@ -189,8 +189,8 @@ discard block |
||
189 | 189 | public function updatePass(Request $request, $id) |
190 | 190 | { |
191 | 191 | $doctor = $this->currentUser(); |
192 | - if($this->validatePass($request->input('old_password'))) { |
|
193 | - if($request->input('old_password') == $request->input('new_password')) { |
|
192 | + if ($this->validatePass($request->input('old_password'))) { |
|
193 | + if ($request->input('old_password') == $request->input('new_password')) { |
|
194 | 194 | return redirect(route('doctor.password.edit', $doctor->id))->with('warning', 'Password baru tidak boleh sama dengan Password lama.'); |
195 | 195 | } |
196 | 196 | |
@@ -216,12 +216,12 @@ discard block |
||
216 | 216 | public function removeImage() |
217 | 217 | { |
218 | 218 | $doctor = $this->currentUser(); |
219 | - if($doctor->profile_picture != "user-default.jpg") { |
|
219 | + if ($doctor->profile_picture != "user-default.jpg") { |
|
220 | 220 | Storage::delete('public/user_images/'.$doctor->profile_picture); |
221 | 221 | } |
222 | 222 | |
223 | 223 | $doctor->profile_picture = "user-default.jpg"; |
224 | - if($doctor->save()) { |
|
224 | + if ($doctor->save()) { |
|
225 | 225 | return redirect(route('doctor.profile.edit', $doctor->id))->with('success', 'Foto profil berhasil dihapus !'); |
226 | 226 | } |
227 | 227 | return redirect(route('doctor.profile.edit', $doctor->id))->with('failed', 'Gagal menghapus foto profil.'); |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | public function destroy() |
236 | 236 | { |
237 | 237 | $doctor = $this->currentUser(); |
238 | - if($doctor->delete()) { |
|
238 | + if ($doctor->delete()) { |
|
239 | 239 | session()->flush(); |
240 | 240 | return redirect(route('doctor.login'))->with('success', 'Akun telah dihapus !'); |
241 | 241 | } |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | public function hospital($id) |
252 | 252 | { |
253 | 253 | $doctor = $this->currentUser(); |
254 | - if($doctor->id == $id) { |
|
254 | + if ($doctor->id == $id) { |
|
255 | 255 | $data = [ |
256 | 256 | 'doctor' => $doctor, |
257 | 257 | 'hospitals' => Hospital::where('city_id', $doctor->city_id)->paginate(5), |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | $dd->doctor_id = $this->currentUser()->id; |
274 | 274 | $dd->hospital_id = $request->input('hospital_id'); |
275 | 275 | |
276 | - if($dd->save()) { |
|
276 | + if ($dd->save()) { |
|
277 | 277 | return redirect(route('doctor.profile.hospital', $this->currentUser()->id))->with('success', 'Rumah Sakit baru ditambahkan !'); |
278 | 278 | } |
279 | 279 | return redirect(route('doctor.profile.hospital', $this->currentUser()->id))->with('failed', 'Gagal menambah Rumah Sakit.'); |
@@ -281,13 +281,13 @@ discard block |
||
281 | 281 | |
282 | 282 | public function unregHospital($doctorId, $hospitalId) |
283 | 283 | { |
284 | - if($this->currentUser()->id != $doctorId) { |
|
284 | + if ($this->currentUser()->id != $doctorId) { |
|
285 | 285 | return redirect()->back()->with('warning', 'Anda tidak berhak mengakses laman tersebut.'); |
286 | 286 | } |
287 | 287 | $dd = DoctorDetail::where('doctor_id', $this->currentUser()->id) |
288 | 288 | ->where('hospital_id', $hospitalId); |
289 | - if($dd != null) { |
|
290 | - if($dd->delete()) { |
|
289 | + if ($dd != null) { |
|
290 | + if ($dd->delete()) { |
|
291 | 291 | return redirect(route('doctor.profile.hospital', $this->currentUser()->id))->with('success', 'Rumah Sakit dihapus !'); |
292 | 292 | } |
293 | 293 | return redirect(route('doctor.profile.hospital', $this->currentUser()->id))->with('failed', 'Gagal menghapus Rumah Sakit, Data tidak ditemukan.'); |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | private function validatePass(string $oldPassword) |
315 | 315 | { |
316 | 316 | $doctor = $this->currentUser(); |
317 | - if(Hash::check($oldPassword, $doctor->password)) { |
|
317 | + if (Hash::check($oldPassword, $doctor->password)) { |
|
318 | 318 | return true; |
319 | 319 | } |
320 | 320 |