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

Station List

Add Station
@forelse ($stations as $station) @empty @endforelse
Station Code Station Name Branch Name Date Created Created By Modified By Date Modified Action
{{ $station['code'] }} {{ $station['name'] }} {{ $station['Branch']['name'] ?? 'N/A' }} {{ \Carbon\Carbon::parse($station['createdAt'])->format('M d, Y H:i') }} {{ $station['created_by'] ?? 'N/A' }} {{ $station['modified_by'] ?? 'N/A' }} {{ \Carbon\Carbon::parse($station['updatedAt'])->format('M d, Y H:i') }} Edit
No stations found.
@endsection