Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function cek(Request $request, $artikel)
- {
- return $request->user()->id == $artikel->id_user;
- }
- public function hapus(Request $request, $id)
- {
- $artikel = Artikel::findOrFail($id);
- if (!$this->cek($request, $artikel)) {
- return "error";
- }
- $artikel->delete();
- return "sukses";
- }
Advertisement
Add Comment
Please, Sign In to add comment