In case that someone needs to use something like this in the future....Or if I forget how I did it...
Product
<input name="product_name" value="Jersey" />
<input name="product_price" value="200" />
Options#1
<input name="options[][name]" placeholder="Color or Size" value="Size" />
Attr#1
<input type="text" name="options[0][attributes][0][title]" value="Small" />
<input type="text" name="options[0][attributes][0][price]" value="35"/>
<input type="text" name="options[0][attributes][0][quantity]" value="23"/>
Attr#2
<input type="text" name="options[0][attributes][1][title]" value="Large" />
<input type="text" name="options[0][attributes][1][price]" value="20"/>
<input type="text" name="options[0][attributes][1][quantity]" value="74"/>
Attr#3
<input type="text" name="options[0][attributes][2][title]" value="XLarge" />
<input type="text" name="options[0][attributes][2][price]" value="45"/>
<input type="text" name="options[0][attributes][2][quantity]" value="4"/>
Options#2
<input name="options[][name]" placeholder="Color or Size" value="Color" />
Attr#1
<input type="text" name="options[1][attributes][0][title]" value="Black" />
<input type="text" name="options[1][attributes][0][price]" value="25"/>
<input type="text" name="options[1][attributes][0][quantity]" value="22"/>
Attr#2
<input type="text" name="options[1][attributes][1][title]" value="Green" />
<input type="text" name="options[1][attributes][1][price]" value="70"/>
<input type="text" name="options[1][attributes][1][quantity]" value="7"/>
then a simple foreach()
foreach( request()->options as $option )
{
echo 'Option Name: '. $option['name'] .'<br>' ;
foreach( $option['attributes'] as $attribute )
{
echo 'Title: ' . $attribute['title'] . '<br>' ;
echo 'Price: ' . $attribute['price'] . '<br>' ;
echo 'Quantity: ' . $attribute['quantity'] . '<br><br>' ;
}
}