예제 #1
0
 /**
  * Show the application dashboard to the user.
  *
  * @return Response
  */
 public function index()
 {
     $Articulo = Articulo::all();
     return \view::make('list', compact('Articulos'));
 }