Postingan lainnya
Image update pada Laravel
Saya sedang membuat aplikasi CRUD sederhana yang didalamnya user dapat memasukan gambar, nah masalah terjadi ketika user ingin mengubah (update) gambarnya.
form update
setelah di-update gambar hilang
Controller yang bersangkutan
0
1 Jawaban:
Jawaban Terpilih
<div>Solved!<br>Dengan kode seperti berikut:</div><pre>if ($files = $request->file('image')) { $destinationPath = 'image/'; $profileImage = date('YmdHis') . "." . $files->getClientOriginalExtension(); $files->move($destinationPath, $profileImage); $update['image'] = "$profileImage"; } Product::where('id',$id)->update($update);
return redirect()-&gt;route('products.index')-&gt;with('success', 'Success update product 😾👍');</pre>
0