40 lines
		
	
	
	
		
			745 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			745 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!doctype html>
 | |
| <style>
 | |
|     tr:nth-child(even) {
 | |
|         background: #CCC
 | |
|     }
 | |
| </style>
 | |
| <h3>{{$subpedido->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($subpedido->productos as $producto)
 | |
|         @if(!$producto->bono)
 | |
|         <tr>
 | |
|             <td>
 | |
|                 {{ $producto->nombre }}
 | |
|             </td>
 | |
|             <td style="text-align: center">
 | |
|                 {{ $producto->pivot->cantidad }}
 | |
|             </td>
 | |
|         </tr>
 | |
|         @endif
 | |
|     @endforeach
 | |
| </table>
 | 
