fauzie811

Untitled

Oct 15th, 2017
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. public function cek(Request $request, $artikel)
  2. {
  3.     return $request->user()->id == $artikel->id_user;
  4. }
  5.  
  6. public function hapus(Request $request, $id)
  7. {
  8.     $artikel = Artikel::findOrFail($id);
  9.  
  10.     if (!$this->cek($request, $artikel)) {
  11.         return "error";
  12.     }
  13.  
  14.     $artikel->delete();
  15.     return "sukses";
  16. }
Advertisement
Add Comment
Please, Sign In to add comment