コード例 #1
0
 /**
  * Display a listing of the instruments.
  *
  * @return Response
  */
 public function index()
 {
     // List all the active instruments
     $instruments = Instrument::paginate(config('blis.page-items'));
     // Load the view and pass the instruments
     return view('instrument.index')->with('instruments', $instruments);
 }