26 lines
635 B
PHP
26 lines
635 B
PHP
{{-- resources/views/admin/neighbor_stations/info.blade.php --}}
|
|
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<h1>近傍駅 詳細</h1>
|
|
|
|
<div>
|
|
<label>駅名:</label>
|
|
<p>{{ $station->station_neighbor_station }}</p>
|
|
|
|
<label>駅名ふりがな:</label>
|
|
<p>{{ $station->station_name_ruby }}</p>
|
|
|
|
<label>路線名:</label>
|
|
<p>{{ $station->station_route_name }}</p>
|
|
|
|
<label>駐輪場ID:</label>
|
|
<p>{{ $station->park_id }}</p>
|
|
|
|
<label>オペレーターID:</label>
|
|
<p>{{ $station->operator_id }}</p>
|
|
</div>
|
|
|
|
<a href="{{ route('neighbor_stations') }}" class="btn btn-secondary">戻る</a>
|
|
@endsection
|