document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public function destroy($id)
  2.     {
  3.         $data = \\App\\Siswa::where(\'id\',$id)->first();
  4.         if($data->delete()){
  5.             $res[\'message\'] = "Success!";
  6.             $res[\'value\'] = $data;
  7.             return response($res);
  8.         }
  9.         else{
  10.             $res[\'message\'] = "Failed!";
  11.             return response($res);
  12.         }
  13.     }
');