Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/order/cart.php
	<table class="cart">
			<thead>
				<tr>
					<th align="center">Lp.</th>
					<th align="center">Zdjęcie</th>
					<th align="center">Nazwa produktu</th>
					<th align="center">Ilość</th>
					<th align="center">Netto</th>
					<th align="center">Brutto</th>
					<th align="center"></th>
				</tr>
			</thead>
			<tbody>
				<?php $i=0; foreach( $cart_session as $val ) : $i++; ?>
				<?php $product = ORM::Factory('item', $val);  ?>
				<tr>
					<td align="center"><?php echo $i; ?>.</td>
					<td align="center"><img width="80" src="html/images/i2.png" alt=""/></td>
					<td align="center"><?php echo $product->title; ?></td>
					<td align="center">1 szt.</td>
					<td align="center">1 900zł</td>
					<td align="center">2 300zł</td>
					<td align="center"><a href="#"><img src="html/images/close.png" alt=""/></a></td>
				</tr>
				<?php endforeach; ?>
			</tbody>
		</table>