Hello,
Currently using the code below for a 4x6 packing slip.
How can I have ITEM | QUANTITY | SKU on it?
I am not sure how to create the 3rd column within the code.
Thank you

Order {{ order.name }}
{{ order.created_at | date: "%e %B %Y" }}
Ship to
{% if shipping_address != blank %}
{{ shipping_address.name }}
{% if shipping_address.company != blank %}
{{ shipping_address.company }}
{% endif %}
{{ shipping_address.address1 }}
{% if shipping_address.address2 != blank %}
{{ shipping_address.address2 }}
{% endif %}
{% if shipping_address.city_province_zip != blank %}
{{ shipping_address.city_province_zip }}
{% endif %}
{{ shipping_address.country }}
{% else %}
No shipping address
{% endif %}
Bill to
{% if billing_address != blank %}
{{ billing_address.name }}
{% if billing_address.company != blank %}
{{ billing_address.company }}
{% endif %}
{{ billing_address.address1 }}
{% if billing_address.address2 != blank %}
{{ billing_address.address2 }}
{% endif %}
{% if billing_address.city_province_zip != blank %}
{{ billing_address.city_province_zip }}
{% endif %}
{{ billing_address.country }}
{% else %}
No billing address
{% endif %}
---
Items
Quantity
{% for line_item in line_items_in_shipment %}
**{{ line_item.title }}**
{% if line_item.variant_title != blank %}
{{ line_item.variant_title }}
{% endif %}
{{ line_item.shipping_quantity }}
{% endfor %}
{% unless includes_all_line_items_in_order %}
---
There are other items from your order not included in this shipment.
{% endunless %}
---
{% if order.note != blank %}
Notes
{{ order.note }}
{% endif %}
Thank you for your custom!
<strong>
American Coffee Club is a trading name of DS Thompson Group Limited.
</strong>
Suite 8, 10 Dock Street, Dundee, DD1 4BT
info@americancoffeeclub.co.uk
{{ shop.domain }}