refactor: override thob modules template

staging
abhisheks 2023-12-14 16:15:04 +05:30
parent 8e2c81f267
commit d970b53502
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<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>