@extends('layouts.principal') @section('titulo')

Dashboard

@endsection @section('contenido') @include('menu.header_principal')
{!! \Sistema::renderiza_menu_cliente() !!}

Pedidos Rechazados

@if (count($pedidosError))
@foreach ($pedidosError as $pedidoerror) @endforeach
Detalle Estado
Producto
Cantidad
Precio
@foreach ($pedidoerror->detalle as $detalle)
{{ $detalle->detalleProducto->nombre }}
{{ $detalle->cantidad }}
{{ $detalle->precio }}
@endforeach
{!! estadoPedido($pedidoerror->estado) !!}
@else No tiene pedidos rechazado ¡Felicitaciones! @endif

Pedidos Pendiente de Entrega

@if (count($pedidosPendientes))
@foreach ($pedidosPendientes as $pedidopendiente) @endforeach
Detalle Estado
Producto
Cantidad
Precio
@foreach ($pedidopendiente->detalle as $detalle)
{{ $detalle->detalleProducto->nombre }}
{{ $detalle->cantidad }}
{{ $detalle->precio }}
@endforeach
{!! estadoPedido($pedidopendiente->estado) !!}
@else No tiene ningun pedido aprobado para su entrega @endif
@include('menu.footer') @endsection