23 lines
705 B
PHP
23 lines
705 B
PHP
<div>
|
|
{{-- Top Nav --}}
|
|
@include('livewire.report.top-nav.station-rating-report')
|
|
|
|
|
|
<livewire:components.table
|
|
:columns="[
|
|
['label' => 'Transaction Date & Time', 'field' => 'date'],
|
|
['label' => 'Card Number', 'field' => 'card_number'],
|
|
['label' => 'Sales Invoice', 'field' => 'invoice'],
|
|
['label' => 'Station', 'field' => 'station'],
|
|
['label' => 'Ratings', 'field' => 'rating'],
|
|
]"
|
|
:rows="$stationRating"
|
|
:hasSearch="false"
|
|
:hasCheckbox="false"
|
|
:hasActions="false"
|
|
:hasDelete="false"
|
|
:hasAddButton="false"
|
|
:isViewPage="false"
|
|
:rowKey="'rating_uuid'"
|
|
/>
|
|
</div> |