18 lines
500 B
PHP
18 lines
500 B
PHP
<div>
|
|
{{-- Top Nav --}}
|
|
@include('livewire.promotion.top-nav.promotion')
|
|
<livewire:components.table
|
|
:columns="[
|
|
['label' => 'Title', 'field' => 'title'],
|
|
['label' => 'Type', 'field' => 'type'],
|
|
['label' => 'Start Date', 'field' => 'start_date'],
|
|
['label' => 'End Date', 'field' => 'end_date'],
|
|
['label' => 'Status', 'field' => 'status'],
|
|
]"
|
|
:rows="$promotions"
|
|
:hasCheckbox="true"
|
|
:hasActions="true"
|
|
:isViewPage="false"
|
|
/>
|
|
</div>
|