Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $articulo = Articulo::all();
     return view('articulo.index', compact('articulo'));
 }