/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     Sistemapg::destroy($id);
     Session::flash('flash_message', 'Sistemapg deleted!');
     return redirect('admin/sistemapg');
 }