<html>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<table>
		<thead>
			<tr>
				<th>Название</th>
				<th>Год</th>
				<th>Тип</th>
				<th>Цена</th>
				<th>Кол-во</th>
			</tr>
		</thead>
		<tbody>
			<?php foreach ($project->products as $product): ?>
			<tr>
				<td>
					<?php echo $product->mark->name; ?> <?php echo $product->name; ?>
				</td>
				<td>
					<?php echo $product->year_start; ?> - <?php echo $product->year_end; ?>
				</td>
				<td>
					<?php
						$prices = $product->getPrices();
						$first = true;
					?>
					<?php foreach (ProductType::all() as $productType): ?>
						<?php if($first): ?>
							<?php if (isset($prices[$productType->id]['price']) && $prices[$productType->id]['price']): ?>
								<?php echo $productType->name; ?>
				</td>
				<td><?php echo $prices[$productType->id]['price']; ?></td>
				<?php
				  $quant = $product->getQuant();
				?>
				<td><?php echo $quant[$productType->id]['quant']; ?></td>
								<?php
									$first = false;
								?>
							<?php endif; ?>
						<?php else: ?>
							<?php if (isset($prices[$productType->id]['price']) && $prices[$productType->id]['price']): ?>
								</tr>
								<tr>
									<td></td>
									<td></td>
									<td>
									<?php echo $productType->name; ?>
									</td>
									<td><?php echo $prices[$productType->id]['price']; ?></td>
							<?php endif; ?>
						<?php endif; ?>
					<?php endforeach; ?>
			</tr>
			<tr>
				<td></td>
				<td></td>
				<td></td>
				<td></td>
				<td></td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>
</html>