@extends('layouts.master')
@section('title', 'Border Stations')
@section('content')
| Name |
Code |
Status |
Action |
@foreach($stations as $station)
| {{ $station->name }} |
{{ $station->code }} |
@if($station->status)
ACTIVE
@else
DISABLED
@endif
|
|
@endforeach
@include('border-stations.partials.add-border-station-modal')
@include('border-stations.partials.edit-border-station-modal')
@push('scripts')
@endpush
@endsection