Ejemplo n.º 1
0
 /**
  * Display a listing of the Concept.
  *
  * @return Response
  */
 public function index()
 {
     $concepts = $this->conceptRepository->paginate(10);
     return view('concepts.index')->with('concepts', $concepts);
 }