Ok, change your table partial to:
@partial('table')
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<thead>
<tr>
<th width="50%" align="left">Name/Description</th>
<th align="right">Unit Price</th>
<th align="right">Sub Total</th>
</tr>
</thead>
<tbody>
@if(!empty($order_menus))
@foreach($order_menus as $order_menu)
<tr>
<td>{{ $order_menu['menu_quantity'] }} x {{ $order_menu['menu_name'] }}<br>{!! $order_menu['menu_options'] !!}<br>{!! $order_menu['menu_comment'] !!}</td>
<td align="right">{{ $order_menu['menu_price'] }}</td>
<td align="right">{{ $order_menu['menu_subtotal'] }}</td>
</tr>
@endforeach
@endif
<tr>
<td colspan="3"><hr></td>
</tr>
@if(!empty($order_totals))
@foreach($order_totals as $order_total)
<tr>
<td><br></td>
<td align="right">{{ $order_total['order_total_title'] }}</td>
<td align="right">{{ $order_total['order_total_value'] }}</td>
</tr>
@endforeach
@endif
</tbody>
</table>
@endpartial
let me know if that works and if so I’ll make a PR for it in the main code