/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $lignes = Ligne::get();
     return view('lignes.index', compact('lignes'));
 }