17 lines
473 B
PHP
17 lines
473 B
PHP
<div>
|
|
{{-- Top Nav --}}
|
|
@include('livewire.about-us.top-nav.terms-and-privacy')
|
|
|
|
<livewire:components.table
|
|
:columns="[
|
|
['label' => 'Title', 'field' => 'title'],
|
|
['label' => 'Details', 'field' => 'details'],
|
|
['label' => 'Type', 'field' => 'type']
|
|
]"
|
|
:rows="$termsAndPrivacy"
|
|
:hasActions="true"
|
|
:isViewPage="false"
|
|
:addRoute="route('terms-and-privacy-create')"
|
|
/>
|
|
</div>
|