/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $ligne = Ligne::findOrFail($id);
     $ligne->delete();
     return redirect(route('ligne.index'));
 }