public function estadisticas()
 {
     $id = Auth::user()->id_restaurante;
     $restaurante = Restaurantes::find(Auth::user()->id_restaurante);
     $restaurantes = Pedidos::estadisticasRestaurante($id)->get();
     $restaurantes2 = Pedidos::estadisticasRestauranteE($id)->get();
     $publicidad = Publicidad::cuentasp(Auth::user()->id_restaurante)->get();
     $pedidos = Pedidos::pedidos(Auth::user()->id_restaurante);
     $reservaciones = Reservaciones::res(Auth::user()->id_restaurante);
     // $pedidos=Pedidos::pagadas($id)->count();
     // $credito = Estadisticas::where('id_restaurante', '=', $id)->where('tipo', '=','tarjeta')->get();
     // $efectivo = Estadisticas::where('id_restaurante', '=', $id)->where('tipo', '=','efectivo')->get();
     // $restaurante = Restaurantes::find(Auth::user()->id_restaurante);
     // if($pedidos==0){
     // 		return View::make('Restaurante.estadisticas2');
     // 	}
     // 	else{
     // 		$cantidad = Pedidos::cantidad()->get();
     return View::make('Restaurante.estadisticas', compact('restaurante', 'restaurantes', 'restaurantes2', 'publicidad', 'pedidos', 'reservaciones'));
 }