20 lines
694 B
PHP
20 lines
694 B
PHP
<div>
|
|
{{-- Top Nav --}}
|
|
@include('livewire.station-locator.top-nav.station')
|
|
<livewire:components.table
|
|
:columns="[
|
|
['label' => 'Station Code', 'field' => 'station_code'],
|
|
['label' => 'Station Name', 'field' => 'station_name'],
|
|
['label' => 'Branch Name', 'field' => 'branch_name'],
|
|
['label' => 'Date Created', 'field' => 'date_created'],
|
|
['label' => 'Created By', 'field' => 'created_by'],
|
|
['label' => 'Modified By', 'field' => 'modified_by'],
|
|
['label' => 'Date Modified', 'field' => 'date_modified'],
|
|
]"
|
|
:rows="$stations"
|
|
:hasActions="true"
|
|
:isViewPage="false"
|
|
:addRoute="route('station-create')"
|
|
/>
|
|
</div>
|