@@ -17,12 +17,12 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function index() |
19 | 19 | { |
20 | - $hospital = Hospital::orderBy('city_id','asc')->paginate(10); |
|
20 | + $hospital = Hospital::orderBy('city_id', 'asc')->paginate(10); |
|
21 | 21 | $data = [ |
22 | 22 | 'role' => session('role'), |
23 | 23 | 'hospital' => $hospital |
24 | 24 | ]; |
25 | - return view('pages.hospital')->with('data',$data); |
|
25 | + return view('pages.hospital')->with('data', $data); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | $hospital->public_services = $request->input('public_services'); |
64 | 64 | $hospital->cover_images_id = 1; |
65 | 65 | |
66 | - if($hospital->save()) { |
|
67 | - return redirect (route('hospital.index'))->with('success', 'Rumah sakit berhasil di tambahkan !'); |
|
66 | + if ($hospital->save()) { |
|
67 | + return redirect(route('hospital.index'))->with('success', 'Rumah sakit berhasil di tambahkan !'); |
|
68 | 68 | } |
69 | 69 | |
70 | - return redirect (route('hospital.index'))->with('failed', 'Gagal menambahkan rumah sakit !'); |
|
70 | + return redirect(route('hospital.index'))->with('failed', 'Gagal menambahkan rumah sakit !'); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public function show($id) |
80 | 80 | { |
81 | 81 | $hospital = Hospital::find($id); |
82 | - if(!$hospital) { |
|
82 | + if (!$hospital) { |
|
83 | 83 | abort(401); |
84 | 84 | } |
85 | 85 | $data = [ |
@@ -136,11 +136,11 @@ discard block |
||
136 | 136 | $hospital->public_services = $request->input('public_services'); |
137 | 137 | $hospital->cover_images_id = 1; |
138 | 138 | |
139 | - if($hospital->save()) { |
|
140 | - return redirect (route('hospital.index'))->with('success', 'Rumah sakit berhasil di perbaharui'); |
|
139 | + if ($hospital->save()) { |
|
140 | + return redirect(route('hospital.index'))->with('success', 'Rumah sakit berhasil di perbaharui'); |
|
141 | 141 | } |
142 | 142 | |
143 | - return redirect (route('hospital.edit', $id))->with('failed', 'Gagal memperbaharui rumah sakit !'); |
|
143 | + return redirect(route('hospital.edit', $id))->with('failed', 'Gagal memperbaharui rumah sakit !'); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | $hospital = Hospital::find($id); |
155 | 155 | $rooms = $this->deleteRoomsAndRoomDetail($id); |
156 | 156 | |
157 | - if($hospital->delete() && $rooms) { |
|
157 | + if ($hospital->delete() && $rooms) { |
|
158 | 158 | return redirect(route('hospital.index')); |
159 | 159 | } |
160 | 160 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | ->where('hospital_id', '=', $hospital_id) |
175 | 175 | ->delete(); |
176 | 176 | |
177 | - if($delroom && $deldetail) { |
|
177 | + if ($delroom && $deldetail) { |
|
178 | 178 | return true; |
179 | 179 | } |
180 | 180 | |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | $rooms = DB::table('rooms') |
191 | 191 | ->selectRaw(DB::raw('rooms.*')) |
192 | 192 | ->leftJoin('room_details', 'rooms.id', '=', 'room_details.room_id') |
193 | - ->where('room_details.hospital_id','=',$hospital_id) |
|
193 | + ->where('room_details.hospital_id', '=', $hospital_id) |
|
194 | 194 | ->get(); |
195 | 195 | |
196 | 196 | return $rooms; |
@@ -198,22 +198,22 @@ discard block |
||
198 | 198 | |
199 | 199 | public function indexUser() |
200 | 200 | { |
201 | - $location = City::orderBy('name','asc')->pluck('name', 'id'); |
|
201 | + $location = City::orderBy('name', 'asc')->pluck('name', 'id'); |
|
202 | 202 | $data = [ |
203 | 203 | 'location' => $location, |
204 | 204 | ]; |
205 | - return view ('SearchRS')->with('data',$data); |
|
205 | + return view('SearchRS')->with('data', $data); |
|
206 | 206 | } |
207 | 207 | |
208 | 208 | public function searchHospital(Request $request) |
209 | 209 | { |
210 | - $hospital = Hospital::where('city_id',$request->location)->orderBy('name')->paginate(5); |
|
211 | - $location = City::orderBy('name','asc')->pluck('name','id'); |
|
210 | + $hospital = Hospital::where('city_id', $request->location)->orderBy('name')->paginate(5); |
|
211 | + $location = City::orderBy('name', 'asc')->pluck('name', 'id'); |
|
212 | 212 | $data = [ |
213 | 213 | 'hospital' => $hospital, |
214 | 214 | 'location' => $location |
215 | 215 | ]; |
216 | - return view ('listHospital')->with('data',$data); |
|
216 | + return view('listHospital')->with('data', $data); |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | public function viewHospital($id) |
@@ -223,6 +223,6 @@ discard block |
||
223 | 223 | 'hospital' => $hospital, |
224 | 224 | 'room' => $this->getRooms($id), |
225 | 225 | ]; |
226 | - return view ('viewhospital')->with('data',$data); |
|
226 | + return view('viewhospital')->with('data', $data); |
|
227 | 227 | } |
228 | 228 | } |
@@ -11,9 +11,9 @@ discard block |
||
11 | 11 | { |
12 | 12 | public function __construct() |
13 | 13 | { |
14 | - $this->middleware('auth', ['except' => [ |
|
14 | + $this->middleware('auth', [ 'except' => [ |
|
15 | 15 | 'index', 'show' |
16 | - ]]); |
|
16 | + ] ]); |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | |
@@ -61,13 +61,13 @@ discard block |
||
61 | 61 | |
62 | 62 | $topic = $this->addTopic($request->input('topic')); |
63 | 63 | |
64 | - if($topic != null) { |
|
64 | + if ($topic != null) { |
|
65 | 65 | $thread = new Thread; |
66 | 66 | $thread->user_id = $this->currentUser()->id; |
67 | 67 | $thread->id_topic = $topic->id; |
68 | 68 | $thread->question = $request->input('question'); |
69 | 69 | |
70 | - if($thread->save()) { |
|
70 | + if ($thread->save()) { |
|
71 | 71 | return redirect(route('user.thread.index'))->with('success', 'Pertanyaan dikirim !'); |
72 | 72 | } |
73 | 73 | return redirect()->back()->with('failed', 'Gagal mengirim pertanyaan, silahkan coba lagi nanti.'); |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | public function show($id) |
85 | 85 | { |
86 | 86 | $thread = Thread::find($id); |
87 | - if(!$thread) { |
|
87 | + if (!$thread) { |
|
88 | 88 | abort(404); |
89 | 89 | } |
90 | 90 | |
@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | { |
107 | 107 | $user = $this->currentUser(); |
108 | 108 | $thread = Thread::find($id); |
109 | - if($thread->user_id != $user->id) { |
|
109 | + if ($thread->user_id != $user->id) { |
|
110 | 110 | return redirect()->back()->with('warning', 'Anda tidak berhak mengakses laman tersebut.'); |
111 | 111 | } |
112 | 112 | |
113 | - if($thread->doctor_id != null) { |
|
113 | + if ($thread->doctor_id != null) { |
|
114 | 114 | return redirect()->back()->with('warning', 'Tidak dapat mengubah pertanyaan karena sudah terjawab, silahkan tanyakan pertanyaan baru.'); |
115 | 115 | } |
116 | 116 | $threads = Thread::orderBy('created_at', 'desc')->paginate(5); |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | { |
136 | 136 | $user = $this->currentUser(); |
137 | 137 | $thread = Thread::find($id); |
138 | - if($thread->user_id != $user->id) { |
|
138 | + if ($thread->user_id != $user->id) { |
|
139 | 139 | return redirect()->back()->with('warning', 'Anda tidak berhak mengubah ulasan tersebut.'); |
140 | 140 | } |
141 | 141 | |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | |
147 | 147 | $thread->topic = $request->input('topic'); |
148 | 148 | $thread->question = $request->input('question'); |
149 | - if($thread->save()) { |
|
149 | + if ($thread->save()) { |
|
150 | 150 | return redirect(route('user.thread.show', $thread->id))->with('success', 'Berhasil mengubah ulasan !'); |
151 | 151 | } |
152 | 152 | return redirect(route('user.thread.show', $thread->id))->with('success', 'Berhasil mengubah ulasan !'); |
@@ -162,11 +162,11 @@ discard block |
||
162 | 162 | { |
163 | 163 | $user = $this->currentUser(); |
164 | 164 | $thread = Thread::find($id); |
165 | - if($thread->user_id != $user->id) { |
|
165 | + if ($thread->user_id != $user->id) { |
|
166 | 166 | return redirect()->back()->with('warning', 'Anda tidak berhak menghapus ulasan tersebut.'); |
167 | 167 | } |
168 | 168 | |
169 | - if($thread->delete() && $this->deleteTopic($thread->id_topic)) { |
|
169 | + if ($thread->delete() && $this->deleteTopic($thread->id_topic)) { |
|
170 | 170 | return redirect(route('user.profile'))->with('success', 'Ulasan dihapus !'); |
171 | 171 | } |
172 | 172 | return redirect()->back()->with('failed', 'Gagal menghapus ulasan.'); |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | { |
191 | 191 | $new = new ThreadTopic; |
192 | 192 | $new->topic_name = $topic; |
193 | - if($new->save()) { |
|
193 | + if ($new->save()) { |
|
194 | 194 | return $new; |
195 | 195 | } |
196 | 196 | return null; |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | private function deleteTopic($id) |
206 | 206 | { |
207 | 207 | $topic = ThreadTopic::find($id); |
208 | - if($topic->delete()) { |
|
208 | + if ($topic->delete()) { |
|
209 | 209 | return true; |
210 | 210 | } |
211 | 211 | return false; |
@@ -10,9 +10,9 @@ discard block |
||
10 | 10 | { |
11 | 11 | public function __construct() |
12 | 12 | { |
13 | - $this->middleware('auth:admin', ['except' => [ |
|
13 | + $this->middleware('auth:admin', [ 'except' => [ |
|
14 | 14 | 'index', 'show' |
15 | - ]]); |
|
15 | + ] ]); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
@@ -25,9 +25,9 @@ discard block |
||
25 | 25 | { |
26 | 26 | $threads = null; |
27 | 27 | $count = null; |
28 | - if($query == "all") { |
|
28 | + if ($query == "all") { |
|
29 | 29 | $threads = Thread::orderBy('created_at', 'desc')->paginate(15); |
30 | - } elseif($query == "answered") { |
|
30 | + } elseif ($query == "answered") { |
|
31 | 31 | $threads = Thread::where('status', true) |
32 | 32 | ->orderBy('created_at', 'desc') |
33 | 33 | ->paginate(15); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | public function show($id) |
61 | 61 | { |
62 | 62 | $thread = Thread::find($id); |
63 | - if(!$thread) { |
|
63 | + if (!$thread) { |
|
64 | 64 | abort(404); |
65 | 65 | } |
66 | 66 | |
@@ -82,8 +82,8 @@ discard block |
||
82 | 82 | public function destroy($id) |
83 | 83 | { |
84 | 84 | $thread = Thread::find($id); |
85 | - if($thread->delete() && $this->deleteTopic($thread->id_topic)) { |
|
86 | - return redirect(route('admin.thread.index', ['query' => "all"]))->with('success', 'Diskusi dihapus !'); |
|
85 | + if ($thread->delete() && $this->deleteTopic($thread->id_topic)) { |
|
86 | + return redirect(route('admin.thread.index', [ 'query' => "all" ]))->with('success', 'Diskusi dihapus !'); |
|
87 | 87 | } |
88 | 88 | return redirect()->back()->with('failed', 'Gagal menghapus diskusi.'); |
89 | 89 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | public function deleteTopic($id) |
99 | 99 | { |
100 | 100 | $topic = ThreadTopic::find($id); |
101 | - if($topic->delete()) { |
|
101 | + if ($topic->delete()) { |
|
102 | 102 | return true; |
103 | 103 | } |
104 | 104 | return false; |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | public function index($id) |
22 | 22 | { |
23 | 23 | $doctor = $this->currentUser(); |
24 | - if($doctor->id != $id) { |
|
24 | + if ($doctor->id != $id) { |
|
25 | 25 | return redirect()->back()->with('warning', 'Anda tidak berhak mengakses laman tersebut.'); |
26 | 26 | } |
27 | 27 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $thread->answer = $request->input('answer'); |
54 | 54 | $thread->status = true; |
55 | 55 | |
56 | - if($thread->save()) { |
|
56 | + if ($thread->save()) { |
|
57 | 57 | return redirect(route('doctor.thread.show', $id))->with('success', 'Jawaban terkirim !'); |
58 | 58 | } |
59 | 59 | return redirect()->back()->with('failed', 'Gagal mengirim jawaban.'); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | public function edit($id) |
69 | 69 | { |
70 | 70 | $thread = Thread::find($id); |
71 | - if(!$thread) { |
|
71 | + if (!$thread) { |
|
72 | 72 | abort(404); |
73 | 73 | } |
74 | 74 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $thread->answer = $request->input('answer'); |
100 | 100 | $thread->status = true; |
101 | 101 | |
102 | - if($thread->save()) { |
|
102 | + if ($thread->save()) { |
|
103 | 103 | return redirect(route('doctor.thread.show', $id))->with('success', 'Perubahan jawaban terkirim !'); |
104 | 104 | } |
105 | 105 | return redirect()->back()->with('failed', 'Gagal mengirim perubahan jawaban.'); |
@@ -114,14 +114,14 @@ discard block |
||
114 | 114 | public function destroy($id) |
115 | 115 | { |
116 | 116 | $thread = Thread::find($id); |
117 | - if($thread->doctor_id != $this->currentUser()->id) { |
|
117 | + if ($thread->doctor_id != $this->currentUser()->id) { |
|
118 | 118 | return redirect()->back()->with('warning', 'Anda tidak berhak menghapus jawaban untuk diskusi tersebut.'); |
119 | 119 | } |
120 | 120 | |
121 | 121 | $thread->doctor_id = null; |
122 | 122 | $thread->answer = null; |
123 | 123 | $thread->status = false; |
124 | - if($thread->save()) { |
|
124 | + if ($thread->save()) { |
|
125 | 125 | return redirect()->back()->with('success', 'Jawaban dihapus !'); |
126 | 126 | } |
127 | 127 | return redirect()->back()->with('failed', 'Gagal mengahapus jawaban.'); |