Example #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Produk::destroy($id);
     $showDefault = cmsHelp('App\\Produk', 'produks');
     return Redirect('product')->with($showDefault);
 }