unioil-cms-fe/resources/views/livewire/promotion/promotion.blade.php

19 lines
543 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"
:addRoute="route('promotion-create')"
/>
</div>