@@ -49,9 +49,9 @@ discard block |
||
49 | 49 | protected function validator(array $data) |
50 | 50 | { |
51 | 51 | return Validator::make($data, [ |
52 | - 'name' => ['required', 'string', 'max:255'], |
|
53 | - 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], |
|
54 | - 'password' => ['required', 'string', 'min:8', 'confirmed'], |
|
52 | + 'name' => [ 'required', 'string', 'max:255' ], |
|
53 | + 'email' => [ 'required', 'string', 'email', 'max:255', 'unique:users' ], |
|
54 | + 'password' => [ 'required', 'string', 'min:8', 'confirmed' ], |
|
55 | 55 | ]); |
56 | 56 | } |
57 | 57 | |
@@ -64,9 +64,9 @@ discard block |
||
64 | 64 | protected function create(array $data) |
65 | 65 | { |
66 | 66 | return User::create([ |
67 | - 'name' => $data['name'], |
|
68 | - 'email' => $data['email'], |
|
69 | - 'password' => Hash::make($data['password']), |
|
67 | + 'name' => $data[ 'name' ], |
|
68 | + 'email' => $data[ 'email' ], |
|
69 | + 'password' => Hash::make($data[ 'password' ]), |
|
70 | 70 | ]); |
71 | 71 | } |
72 | 72 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | 'password' => 'required|min:6' |
35 | 35 | ]); |
36 | 36 | |
37 | - if($validate->fails()) { |
|
37 | + if ($validate->fails()) { |
|
38 | 38 | return redirect()->back()->withErrors($validate); |
39 | 39 | } |
40 | 40 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | ]; |
45 | 45 | |
46 | 46 | // Attempt Login |
47 | - if(Auth::guard('admin')->attempt($credentials, $request->remember)) { |
|
47 | + if (Auth::guard('admin')->attempt($credentials, $request->remember)) { |
|
48 | 48 | // If 'true' -> redirect to admin.index |
49 | 49 | session([ |
50 | 50 | 'role' => 'Admin', |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | private function sendFailedLoginResponse(Request $request) |
61 | 61 | { |
62 | 62 | throw ValidationException::withMessages([ |
63 | - 'email' => [trans('auth.failed')], |
|
63 | + 'email' => [ trans('auth.failed') ], |
|
64 | 64 | ]); |
65 | 65 | } |
66 | 66 |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $specialty->name = $request->input('name'); |
52 | 52 | $specialty->detail = $request->input('detail'); |
53 | 53 | |
54 | - if($specialty->save()) { |
|
54 | + if ($specialty->save()) { |
|
55 | 55 | return redirect(route('specialty.index')); |
56 | 56 | } |
57 | 57 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $specialty->name = $request->input('name'); |
101 | 101 | $specialty->detail = $request->input('detail'); |
102 | 102 | |
103 | - if($specialty->save()) { |
|
103 | + if ($specialty->save()) { |
|
104 | 104 | return redirect(route('specialty.index')); |
105 | 105 | } |
106 | 106 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | public function destroy($id) |
115 | 115 | { |
116 | 116 | $specialty = DoctorSpecialization::find($id); |
117 | - if($specialty->delete()) { |
|
117 | + if ($specialty->delete()) { |
|
118 | 118 | return redirect(route('specialty.index')); |
119 | 119 | } |
120 | 120 | } |
@@ -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 | /** |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | $hospital->cover_images_id = 1; |
131 | 131 | $hospital->save(); |
132 | 132 | |
133 | - return redirect (route('hospital.index')); |
|
133 | + return redirect(route('hospital.index')); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $hospital = Hospital::find($id); |
145 | 145 | $rooms = $this->deleteRoomsAndRoomDetail($id); |
146 | 146 | |
147 | - if($hospital->delete() && $rooms) { |
|
147 | + if ($hospital->delete() && $rooms) { |
|
148 | 148 | return redirect(route('hospital.index')); |
149 | 149 | } |
150 | 150 | |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | ->where('hospital_id', '=', $hospital_id) |
165 | 165 | ->delete(); |
166 | 166 | |
167 | - if($delroom && $deldetail) { |
|
167 | + if ($delroom && $deldetail) { |
|
168 | 168 | return true; |
169 | 169 | } |
170 | 170 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | $rooms = DB::table('rooms') |
181 | 181 | ->selectRaw(DB::raw('rooms.*')) |
182 | 182 | ->leftJoin('room_details', 'rooms.id', '=', 'room_details.room_id') |
183 | - ->where('room_details.hospital_id','=',$hospital_id) |
|
183 | + ->where('room_details.hospital_id', '=', $hospital_id) |
|
184 | 184 | ->get(); |
185 | 185 | |
186 | 186 | return $rooms; |
@@ -15,12 +15,12 @@ |
||
15 | 15 | |
16 | 16 | public function index() |
17 | 17 | { |
18 | - $user = User::orderBy('name','asc')->paginate(10); |
|
18 | + $user = User::orderBy('name', 'asc')->paginate(10); |
|
19 | 19 | $data = [ |
20 | 20 | 'role' => session('role'), |
21 | 21 | 'user' => $user, |
22 | 22 | ]; |
23 | - return view('pages.member')->with('data',$data); |
|
23 | + return view('pages.member')->with('data', $data); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -18,12 +18,12 @@ discard block |
||
18 | 18 | */ |
19 | 19 | public function index() |
20 | 20 | { |
21 | - $doctor = Doctor::orderBy('name','asc')->paginate(10); |
|
21 | + $doctor = Doctor::orderBy('name', 'asc')->paginate(10); |
|
22 | 22 | $data = [ |
23 | 23 | 'role' => session('role'), |
24 | 24 | 'doctor' => $doctor, |
25 | 25 | ]; |
26 | - return view('pages.doctor')->with('data',$data); |
|
26 | + return view('pages.doctor')->with('data', $data); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function store(Request $request) |
47 | 47 | { |
48 | - $this->validate($request,[ |
|
48 | + $this->validate($request, [ |
|
49 | 49 | 'specialty' => 'required', |
50 | 50 | 'name' => 'required|min:3|max:50', |
51 | 51 | 'license' => 'required|min:3|max:191', |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | $doctor->email = $request->input('email'); |
63 | 63 | $doctor->password = Hash::make($request->password); |
64 | 64 | |
65 | - if($doctor->save()) { |
|
65 | + if ($doctor->save()) { |
|
66 | 66 | return redirect(route('doctor.index')); |
67 | 67 | } |
68 | 68 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function update(Request $request, $id) |
105 | 105 | { |
106 | - $this->validate($request,[ |
|
106 | + $this->validate($request, [ |
|
107 | 107 | 'name' => 'required|min:3|max:50', |
108 | 108 | 'password' => 'required_with:password_confirmation|same:password_confirmation|min:6', |
109 | 109 | 'password_confirmation' => 'min:6' |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | $doctor = Doctor::find($id); |
129 | 129 | $doctor->delete(); |
130 | 130 | |
131 | - return redirect (route('doctor.index')); |
|
131 | + return redirect(route('doctor.index')); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 |
@@ -19,10 +19,10 @@ discard block |
||
19 | 19 | */ |
20 | 20 | public function __construct() |
21 | 21 | { |
22 | - $this->middleware('auth', ['except' => [ |
|
22 | + $this->middleware('auth', [ 'except' => [ |
|
23 | 23 | 'index', |
24 | 24 | 'showArticle' |
25 | - ]]); |
|
25 | + ] ]); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function index() |
33 | 33 | { |
34 | - $article = Articles::where('category','penyakit')->orderBy('created_at','desc')->take(3)->get(); |
|
34 | + $article = Articles::where('category', 'penyakit')->orderBy('created_at', 'desc')->take(3)->get(); |
|
35 | 35 | return view('home')->with('article', $article); |
36 | 36 | } |
37 | 37 | |
@@ -55,11 +55,11 @@ discard block |
||
55 | 55 | public function edit($id) |
56 | 56 | { |
57 | 57 | $user = $this->currentUser(); |
58 | - if($user->id == $id) { |
|
58 | + if ($user->id == $id) { |
|
59 | 59 | $data = [ |
60 | 60 | 'user' => $user |
61 | 61 | ]; |
62 | - return view ('profile-edit')->with('data', $data); |
|
62 | + return view('profile-edit')->with('data', $data); |
|
63 | 63 | } |
64 | 64 | return redirect()->back()->with('warning', 'Anda tidak berhak untuk mengakses laman tersebut.'); |
65 | 65 | } |
@@ -72,11 +72,11 @@ discard block |
||
72 | 72 | public function editPass($id) |
73 | 73 | { |
74 | 74 | $user = $this->currentUser(); |
75 | - if($user->id == $id) { |
|
75 | + if ($user->id == $id) { |
|
76 | 76 | $data = [ |
77 | 77 | 'user' => $user |
78 | 78 | ]; |
79 | - return view ('profile-password')->with('data', $data); |
|
79 | + return view('profile-password')->with('data', $data); |
|
80 | 80 | } |
81 | 81 | return redirect()->back()->with('warning', 'Anda tidak berhak untuk mengakses laman tersebut.'); |
82 | 82 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public function update(Request $request, $id) |
92 | 92 | { |
93 | - $this->validate($request,[ |
|
93 | + $this->validate($request, [ |
|
94 | 94 | 'name' => 'required|min:3', |
95 | 95 | 'email' => 'required|email', |
96 | 96 | 'image' => 'image|nullable|max:3999' |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | $img = null; |
100 | 100 | $user = $this->currentUser(); |
101 | 101 | |
102 | - if($request->hasFile('image')) { |
|
102 | + if ($request->hasFile('image')) { |
|
103 | 103 | |
104 | - if( $user->profile_picture != "user-default.jpg" && |
|
104 | + if ($user->profile_picture != "user-default.jpg" && |
|
105 | 105 | $user->profile_picture != "user-default-male.png" && |
106 | 106 | $user->profile_picture != "user-default-female.png") { |
107 | 107 | |
@@ -128,14 +128,14 @@ discard block |
||
128 | 128 | } |
129 | 129 | |
130 | 130 | |
131 | - if($this->currentUser()->id == $id) { |
|
131 | + if ($this->currentUser()->id == $id) { |
|
132 | 132 | $user->name = $request->input('name'); |
133 | 133 | $user->biography = $request->input('bio'); |
134 | 134 | $user->gender = $request->input('gender'); |
135 | 135 | $user->profile_picture = $img; |
136 | 136 | $user->save(); |
137 | 137 | |
138 | - return redirect (route('user.profile.edit', ['id' => $id]))->with('success', 'Profil berhasil diperbarui !'); |
|
138 | + return redirect(route('user.profile.edit', [ 'id' => $id ]))->with('success', 'Profil berhasil diperbarui !'); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | return redirect()->back()->with('warning', 'Anda tidak berhak untuk mengakses laman tersebut.'); |
@@ -157,10 +157,10 @@ discard block |
||
157 | 157 | |
158 | 158 | $user = $this->currentUser(); |
159 | 159 | |
160 | - if($this->validatePass($request->input('old_password'))) { |
|
160 | + if ($this->validatePass($request->input('old_password'))) { |
|
161 | 161 | $user->password = Hash::make($request->input('new_password')); |
162 | 162 | |
163 | - if($user->save()) { |
|
163 | + if ($user->save()) { |
|
164 | 164 | session()->flush(); |
165 | 165 | |
166 | 166 | return redirect(route('login'))->with('success', 'Password berhasil diubah ! Silahkan login kembali.'); |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | public function showArticle($id) |
179 | 179 | { |
180 | 180 | $article = Articles::find($id); |
181 | - return view('viewarticle')->with('article',$article); |
|
181 | + return view('viewarticle')->with('article', $article); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | |
@@ -190,23 +190,23 @@ discard block |
||
190 | 190 | $user = $this->currentUser(); |
191 | 191 | $img = null; |
192 | 192 | |
193 | - if( $user->profile_picture != "user-default.jpg" && |
|
193 | + if ($user->profile_picture != "user-default.jpg" && |
|
194 | 194 | $user->profile_picture != "user-default-male.png" && |
195 | 195 | $user->profile_picture != "user-default-female.png") { |
196 | 196 | |
197 | 197 | Storage::delete('public/user_images/'.$user->profile_picture); |
198 | 198 | } |
199 | 199 | |
200 | - if( $user->gender != null && $user->gender == "Laki - laki") { |
|
200 | + if ($user->gender != null && $user->gender == "Laki - laki") { |
|
201 | 201 | $img = "user-default-male.png"; |
202 | - } elseif($user->gender != null && $user->gender == "Perempuan") { |
|
202 | + } elseif ($user->gender != null && $user->gender == "Perempuan") { |
|
203 | 203 | $img = "user-default-female.png"; |
204 | 204 | } else { |
205 | 205 | $img = "user-default.jpg"; |
206 | 206 | } |
207 | 207 | |
208 | 208 | $user->profile_picture = $img; |
209 | - if($user->save()) { |
|
209 | + if ($user->save()) { |
|
210 | 210 | return redirect(route('user.profile.edit', $user->id))->with('success', 'Foto profil dihapus !'); |
211 | 211 | } |
212 | 212 | } |
@@ -218,14 +218,14 @@ discard block |
||
218 | 218 | public function destroy() |
219 | 219 | { |
220 | 220 | $user = $this->currentUser(); |
221 | - if( $user->profile_picture != "user-default.jpg" && |
|
221 | + if ($user->profile_picture != "user-default.jpg" && |
|
222 | 222 | $user->profile_picture != "user-default-male.png" && |
223 | 223 | $user->profile_picture != "user-default-female.png") { |
224 | 224 | |
225 | 225 | Storage::delete('public/user_images/'.$user->profile_picture); |
226 | 226 | } |
227 | 227 | |
228 | - if($user->delete()) { |
|
228 | + if ($user->delete()) { |
|
229 | 229 | session()->flush(); |
230 | 230 | return redirect(route('home'))->with('success', 'Akun berhasil dihapus !'); |
231 | 231 | } |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | private function validatePass(string $oldPassword) |
249 | 249 | { |
250 | 250 | $user = $this->currentUser(); |
251 | - if(Hash::check($oldPassword, $user->password)) { |
|
251 | + if (Hash::check($oldPassword, $user->password)) { |
|
252 | 252 | return true; |
253 | 253 | } |
254 | 254 | return false; |
@@ -38,14 +38,14 @@ discard block |
||
38 | 38 | $adminId = $this->getAttributeValue('admin_id'); |
39 | 39 | $doctorId = $this->getAttributeValue('doctor_id'); |
40 | 40 | |
41 | - $writer = ['role', 'data']; |
|
41 | + $writer = [ 'role', 'data' ]; |
|
42 | 42 | |
43 | - if($adminId != null) { |
|
44 | - $writer['role'] = "Admin"; |
|
45 | - $writer['data'] = Admin::find($adminId); |
|
46 | - } elseif($doctorId != null) { |
|
47 | - $writer['role'] = "Dokter"; |
|
48 | - $writer['data'] = Doctor::find($doctorId); |
|
43 | + if ($adminId != null) { |
|
44 | + $writer[ 'role' ] = "Admin"; |
|
45 | + $writer[ 'data' ] = Admin::find($adminId); |
|
46 | + } elseif ($doctorId != null) { |
|
47 | + $writer[ 'role' ] = "Dokter"; |
|
48 | + $writer[ 'data' ] = Doctor::find($doctorId); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | return $writer; |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function cutStr($str) |
59 | 59 | { |
60 | - if (strlen($str) > 200){ |
|
61 | - return substr($str,0,200) . "..."; |
|
60 | + if (strlen($str) > 200) { |
|
61 | + return substr($str, 0, 200)."..."; |
|
62 | 62 | } |
63 | 63 | return $str; |
64 | 64 | } |
@@ -70,11 +70,11 @@ discard block |
||
70 | 70 | public function getCat($str) |
71 | 71 | { |
72 | 72 | switch ($str) { |
73 | - case "penyakit": return "Penyakit"; break; |
|
73 | + case "penyakit": return "Penyakit"; break; |
|
74 | 74 | case "obat": return "Obat - obatan"; break; |
75 | - case "hidup-sehat": return "Hidup Sehat"; break; |
|
76 | - case "keluarga": return "Keluarga"; break; |
|
77 | - case "kesehatan": return "Kesehatan"; break; |
|
75 | + case "hidup-sehat": return "Hidup Sehat"; break; |
|
76 | + case "keluarga": return "Keluarga"; break; |
|
77 | + case "kesehatan": return "Kesehatan"; break; |
|
78 | 78 | } |
79 | 79 | } |
80 | 80 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function index() |
19 | 19 | { |
20 | - $articles = Articles::orderBy('category','asc')->paginate(5); |
|
20 | + $articles = Articles::orderBy('category', 'asc')->paginate(5); |
|
21 | 21 | $data = [ |
22 | 22 | 'articles' => $articles |
23 | 23 | ]; |
@@ -40,20 +40,20 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function store(Request $request) |
42 | 42 | { |
43 | - $this->validate($request,[ |
|
43 | + $this->validate($request, [ |
|
44 | 44 | 'category' => 'required', |
45 | 45 | 'title' => 'required', |
46 | 46 | 'content' => 'required|min:500', |
47 | 47 | 'cover_image' => 'image|nullable|max:3999 ' |
48 | 48 | ]); |
49 | 49 | |
50 | - if($request->hasFile('cover_image')){ |
|
50 | + if ($request->hasFile('cover_image')) { |
|
51 | 51 | $filenameWithExt = $request->file('cover_image')->getClientOriginalName(); |
52 | 52 | $filename = pathinfo($filenameWithExt, PATHINFO_FILENAME); |
53 | 53 | $extension = $request->file('cover_image')->getClientOriginalExtension(); |
54 | 54 | $fileNameToStore = $filename.'_'.time().'.'.$extension; |
55 | 55 | $path = $request->file('cover_image')->storeAs('public/cover_images', $fileNameToStore); |
56 | - }else { |
|
56 | + } else { |
|
57 | 57 | $fileNameToStore = 'noimage.jpg'; |
58 | 58 | } |
59 | 59 | |
@@ -61,15 +61,15 @@ discard block |
||
61 | 61 | $article->category = $request->input('category'); |
62 | 62 | $article->title = $request->input('title'); |
63 | 63 | $article->content = $request->input('content'); |
64 | - if(session('guard') == 'admin') { |
|
64 | + if (session('guard') == 'admin') { |
|
65 | 65 | $article->admin_id = Auth::guard('admin')->user()->id; |
66 | 66 | } else { |
67 | 67 | $article->doctor_id = Auth::guard('doctor')->user()->id; |
68 | 68 | } |
69 | 69 | $article->cover_image = $fileNameToStore; |
70 | 70 | |
71 | - if($article->save()) { |
|
72 | - return redirect (route('article.index'))->with('success', 'Artikel baru berhasil ditambahkan !'); |
|
71 | + if ($article->save()) { |
|
72 | + return redirect(route('article.index'))->with('success', 'Artikel baru berhasil ditambahkan !'); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | return redirect(route('article.create'))->with('failed', 'Gagal menambahkan artikel.'); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | } |
113 | 113 | |
114 | 114 | $data = [ |
115 | - 'articles' => Articles::where('category', $cat)->orderBy('title','asc')->get(), |
|
115 | + 'articles' => Articles::where('category', $cat)->orderBy('title', 'asc')->get(), |
|
116 | 116 | 'category' => $category, |
117 | 117 | 'cat' => $cat |
118 | 118 | ]; |
@@ -143,8 +143,8 @@ discard block |
||
143 | 143 | } |
144 | 144 | $data = [ |
145 | 145 | 'articles' => Articles::where('category', $cat) |
146 | - ->where('title','LIKE',$name.'%') |
|
147 | - ->orderBy('title','asc') |
|
146 | + ->where('title', 'LIKE', $name.'%') |
|
147 | + ->orderBy('title', 'asc') |
|
148 | 148 | ->get(), |
149 | 149 | 'category' => $category, |
150 | 150 | 'cat' => $cat |
@@ -157,8 +157,8 @@ discard block |
||
157 | 157 | { |
158 | 158 | $cari = $request->cari; |
159 | 159 | $articles = Articles::where('category', $cat) |
160 | - ->where('content','LIKE','%'.$cari.'%') |
|
161 | - ->orderBy('title','asc') |
|
160 | + ->where('content', 'LIKE', '%'.$cari.'%') |
|
161 | + ->orderBy('title', 'asc') |
|
162 | 162 | ->get(); |
163 | 163 | $category = null; |
164 | 164 | switch ($cat) { |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | */ |
209 | 209 | public function update(Request $request, $id) |
210 | 210 | { |
211 | - $this->validate($request,[ |
|
211 | + $this->validate($request, [ |
|
212 | 212 | 'category' => 'required', |
213 | 213 | 'title' => 'required', |
214 | 214 | 'content' => 'required|min:500', |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | |
217 | 217 | ]); |
218 | 218 | |
219 | - if($request->hasFile('cover_image')){ |
|
219 | + if ($request->hasFile('cover_image')) { |
|
220 | 220 | $filenameWithExt = $request->file('cover_image')->getClientOriginalName(); |
221 | 221 | $filename = pathinfo($filenameWithExt, PATHINFO_FILENAME); |
222 | 222 | $extension = $request->file('cover_image')->getClientOriginalExtension(); |
@@ -228,15 +228,15 @@ discard block |
||
228 | 228 | $article->category = $request->input('category'); |
229 | 229 | $article->title = $request->input('title'); |
230 | 230 | $article->content = $request->input('content'); |
231 | - if($request->hasFile('cover_image')){ |
|
231 | + if ($request->hasFile('cover_image')) { |
|
232 | 232 | $article->cover_image = $fileNameToStore; |
233 | 233 | } |
234 | 234 | |
235 | - if($article->save()) { |
|
236 | - return redirect (route('article.index'))->with('success', 'Artikel berhasil diubah !'); |
|
235 | + if ($article->save()) { |
|
236 | + return redirect(route('article.index'))->with('success', 'Artikel berhasil diubah !'); |
|
237 | 237 | } |
238 | 238 | |
239 | - return redirect (route('article.edit', $id))->with('failed', 'Gagal mengubah artikel !'); |
|
239 | + return redirect(route('article.edit', $id))->with('failed', 'Gagal mengubah artikel !'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -247,11 +247,11 @@ discard block |
||
247 | 247 | { |
248 | 248 | $article = Articles::find($id); |
249 | 249 | |
250 | - if($article->cover_image != 'noimage.jpg'){ |
|
250 | + if ($article->cover_image != 'noimage.jpg') { |
|
251 | 251 | Storage::delete('public/cover_images/'.$article->cover_image); |
252 | 252 | } |
253 | 253 | |
254 | - if($article->delete()) { |
|
254 | + if ($article->delete()) { |
|
255 | 255 | return redirect()->back()->with('success', 'Artikel dihapus !'); |
256 | 256 | } |
257 | 257 |