@extends('layouts.app') @section('title', '[東京都|〇〇駐輪場] 近傍駅マスタ') @section('content')

近傍駅マスタ

{{-- 並び替え用 hidden --}}
@csrf
{{-- ▼ ボタンエリア --}}
{{-- 削除 --}}
{{-- ▼ ページネーション --}}
{{ $list->appends([ 'sort' => $sort ?? '', 'sort_type' => $sort_type ?? '' ])->links('pagination') }}
{{-- ▼ テーブル --}}
@if(Session::has('success')) @elseif(Session::has('error'))

{{ __('誤差') }}:

{!! Session::get('error') !!}
@endif
@csrf {{-- ★ チェック + 編集 用の1列 --}} {{-- ソート --}} @foreach($list as $station) {{-- ★ 同じセル内に チェック + 編集ボタン) --}} @endforeach
近傍駅ID 駐車場ID 近傍駅 近傍駅ふりがな 路線名 {{ __('近傍駅座標(緯度)') }} {{ __('近傍駅座標(経度)') }}
{{ $station->station_id }} {{ $station->park_id }} {{ $station->station_neighbor_station }} {{ $station->station_name_ruby }} {{ $station->station_route_name }} {{ $station->station_latitude }} {{ $station->station_longitude }}
@endsection