/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //List all microcriticals
     $microcritical = MicroCritical::orderBy('id', 'ASC')->get();
     //Load the view and pass the microcriticals
     return view('microcritical.index')->with('microcritical', $microcritical);
 }