<html>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<table>
		<thead>
			<tr>
				<td><b>Артикул</b></td>
				<td><b>Наименование</b></td>
				<td><b>Количество</b></td>
				<td><b>Цена</b></td>
			</tr>
		</thead>
		<tbody>
			@foreach($products as $product)
			<tr>
				<td>{{ $product['id'] }}</td>
				<td>{{ $product['name'] }}</td>
				<td>{{ $product['quant'] }}</td>
				<td>{{ $product['price'] }}</td>
			</tr>
			@endforeach
		</tbody>
	</table>

</html>