示例#1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Links::whereId($id)->delete();
     return Redirect::route('links.index')->with('message', 'Link deleted.');
 }