parse sms transaction
This commit is contained in:
@@ -1,4 +1,32 @@
|
||||
<h1>Message:</h1>
|
||||
{{#each messages}}
|
||||
<div>{{raw}}</div>
|
||||
{{/each}}
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Day</th>
|
||||
<th scope="col">Month</th>
|
||||
<th scope="col">Year</th>
|
||||
<th scope="col">Amount</th>
|
||||
<th scope="col">Type</th>
|
||||
<th scope="col">Company</th>
|
||||
<th scope="col">Raw</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
{{#each messages}}
|
||||
<tr>
|
||||
<th scope="row">{{@index}}</th>
|
||||
<td>{{day}}</td>
|
||||
<td>{{month}}</td>
|
||||
<td>{{year}}</td>
|
||||
<td>{{amount}}</td>
|
||||
<td>{{type}}</td>
|
||||
<td>{{company}}</td>
|
||||
<td>{{raw}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
|
||||
</tbody>
|
||||
</table>
|
Reference in New Issue
Block a user