public function productos()
 {
     $variable = Productos::rest()->get();
     $restaurantes = Restaurantes::where('validado', '=', '1')->get();
     $mensaje = 5;
     return View::make('Admin.restaurantes2', compact('restaurantes', 'variable', 'mensaje'));
 }