/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($idpic)
 {
     $pic = Pic::find($idpic)->delete();
     return Redirect::to('pic');
 }