@extends('layouts.app') @section('content')

Station Management

@include('components.alerts')
@forelse($stations as $station) @empty @endforelse
ID Name Address Region Contact Status Last Updated Actions
{{ $station['id'] }} {{ $station['name'] }}
{{ $station['address'] }}
View on Map
{{ $station['region'] }} {{ $station['contact_number'] }} {{ $station['is_active'] ? 'Active' : 'Inactive' }} {{ \Carbon\Carbon::parse($station['updated_at'])->format('Y-m-d H:i') }}
@csrf @method('DELETE')
No stations found
{{ $stations->links() }}
@endsection @push('styles') @endpush @push('scripts') @endpush