20 lines
588 B
PHP
20 lines
588 B
PHP
<div>
|
|
{{-- Top Nav --}}
|
|
@include('livewire.report.top-nav.top-up-usage-report')
|
|
|
|
<livewire:components.table
|
|
:columns="[
|
|
['label' => 'Transaction Date & Time', 'field' => 'transaction_date_time'],
|
|
['label' => 'Card Number', 'field' => 'card_number'],
|
|
['label' => 'Top-up Amount', 'field' => 'top_up_amount'],
|
|
]"
|
|
:rows="$topUpUsage"
|
|
:hasAddButton="false"
|
|
:hasSearch="false"
|
|
:hasCheckbox="false"
|
|
:hasActions="false"
|
|
:hasDelete="false"
|
|
:isViewPage="false"
|
|
/>
|
|
</div>
|