<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>
			@foreach ($project->products as $product)
			<tr>
				<td>
					{{ $product->mark->name }} {{ $product->name }}
				</td>
				<td>
					{{ $product->year_start }} - {{ $product->year_end }}
				</td>
				<td>
					<?php
						$prices = $product->getPrices();
						$first = true;
					?>
					@foreach (ProductType::all() as $productType)
						@if($first)
							@if (isset($prices[$productType->id]['price']) && $prices[$productType->id]['price'])
								{{ $productType->name }}
				</td>
				<td>{{ $prices[$productType->id]['price'] }}</td>
				<?php
				  $quant = $product->getQuant();
				?>
				<td>{{ $quant[$productType->id]['quant'] }}</td>
								<?php
									$first = false;
								?>
							@endif
						@else
							@if (isset($prices[$productType->id]['price']) && $prices[$productType->id]['price'])
								</tr>
								<tr>
									<td></td>
									<td></td>
									<td>
									{{ $productType->name }}
									</td>
									<td>{{ $prices[$productType->id]['price'] }}</td>
							@endif
						@endif
					@endforeach
			</tr>
			<tr>
				<td></td>
				<td></td>
				<td></td>
				<td></td>
				<td></td>
			</tr>
			@endforeach
		</tbody>
	</table>
</html>