44 lines
		
	
	
	
		
			900 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			900 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!doctype html>
 | 
						|
<style>
 | 
						|
    tr:nth-child(even) {
 | 
						|
        background: #CCC
 | 
						|
    }
 | 
						|
</style>
 | 
						|
<h3>{{$pedido['nombre']}}</h3>
 | 
						|
 | 
						|
<table style="width: 100%">
 | 
						|
    <tr>
 | 
						|
        <th>
 | 
						|
            Producto
 | 
						|
        </th>
 | 
						|
        <th>
 | 
						|
            Cantidad
 | 
						|
        </th>
 | 
						|
        <th>
 | 
						|
            Control 1
 | 
						|
        </th>
 | 
						|
        <th>
 | 
						|
            Control 2
 | 
						|
        </th>
 | 
						|
        <th>
 | 
						|
            Control 3
 | 
						|
        </th>
 | 
						|
    </tr>
 | 
						|
 | 
						|
    @foreach($pedido['productos'] as $producto)
 | 
						|
        @if(!$producto['bono'])
 | 
						|
 | 
						|
        <tr>
 | 
						|
            <td>
 | 
						|
                {{ $producto['nombre'] }}
 | 
						|
                @if($producto['pivot']['notas'])
 | 
						|
                <br /><b>Talle/Color:</b> {{ $producto['pivot']['notas'] }}
 | 
						|
                @endif
 | 
						|
            </td>
 | 
						|
            <td style="text-align: center">
 | 
						|
                {{ $producto['pivot']['cantidad'] }}
 | 
						|
            </td>
 | 
						|
        </tr>
 | 
						|
        @endif
 | 
						|
    @endforeach
 | 
						|
</table>
 |