<table class="w-full striped">
    <thead>
        <tr>
            <th>Particular</th>
            <th>Value</th>
        </tr>
    </thead>
    <tbody>
        {foreach from=$line_items item="line_item"}
            <tr class="even:bg-blue-500/10">
                <td class="py-1 pl-2">
                    {$line_item["label"]}
                </td>
                <td class="py-1 pr-2">
                    {$line_item["value"]}
                </td>
            </tr>
        {/foreach}
    </tbody>
</table>