cms-frontend/resources/views/pages/station locator/stations.blade.php

32 lines
1.4 KiB
PHP

@extends('layouts.app')
@section('page_title', 'Station Management')
@section('content')
@include('components.station-component', [
'pageTitle' => 'Station Management',
'data' => $stations ?? [],
'columns' => [
['name' => 'Station Code', 'key' => 'station_code', 'sortable' => true],
['name' => 'Station Name', 'key' => 'station_name', 'sortable' => true],
['name' => 'Branch Name', 'key' => 'branch_name', 'sortable' => true],
['name' => 'Date Created', 'key' => 'date_created', 'sortable' => true],
['name' => 'Created By', 'key' => 'created_by', 'sortable' => true],
['name' => 'Modified By', 'key' => 'modified_by', 'sortable' => true],
['name' => 'Date Modified', 'key' => 'date_modified', 'sortable' => true]
],
'actions' => ['view', 'edit', 'delete'],
'showAddButton' => true,
'addButtonUrl' => route('stations.create'),
'showCheckboxes' => false,
'showBatchDelete' => false,
'showEditModal' => true,
'showViewModal' => true,
'currentPage' => $currentPage ?? 1,
'lastPage' => $lastPage ?? 1,
'total' => $total ?? 0,
])
<div id="no-data-message" style="display: {{ empty($stations ?? []) ? 'block' : 'none' }}; text-align: center; margin-top: 20px;">
<p>No stations found.</p>
</div>
@endsection