/**
  * Display a listing of the instruments.
  *
  * @return Response
  */
 public function index()
 {
     // List all the active instruments
     $instruments = Instrument::paginate(Config::get('kblis.page-items'));
     // Load the view and pass the instruments
     return View::make('instrument.index')->with('instruments', $instruments);
 }